diff --git a/dotnet/targets/Xamarin.Shared.Sdk.targets b/dotnet/targets/Xamarin.Shared.Sdk.targets
index 7ced58e9da8b..27b99c9a7182 100644
--- a/dotnet/targets/Xamarin.Shared.Sdk.targets
+++ b/dotnet/targets/Xamarin.Shared.Sdk.targets
@@ -94,7 +94,7 @@
-
+
@@ -515,7 +515,7 @@
Compile;_ComputeLinkerArguments;_ComputeManagedAssemblyToLink;SetupOSSpecificProps;PrepareForILLink;_XamarinComputeIlcCompileInputs
-
+
-
+
@@ -585,6 +594,10 @@
<_IsManagedStaticRegistrarFeature Condition="'$(Registrar)' == 'managed-static'">true
<_IsManagedStaticRegistrarFeature Condition="'$(Registrar)' != 'managed-static'">false
+
+ <_IsTrimmableStaticRegistrarFeature Condition="'$(Registrar)' == 'trimmable-static'">true
+ <_IsTrimmableStaticRegistrarFeature Condition="'$(Registrar)' != 'trimmable-static'">false
+
<_IsNativeAOTFeature Condition="'$(_XamarinRuntime)' == 'NativeAOT'">true
<_IsNativeAOTFeature Condition="'$(_XamarinRuntime)' != 'NativeAOT'">false
@@ -644,6 +657,8 @@
SkipMarkingNSObjectsInUserAssemblies=$(_SkipMarkingNSObjectsInUserAssemblies)
TargetArchitectures=$(TargetArchitectures)
TargetFramework=$(_ComputedTargetFrameworkMoniker)
+ TypeMapAssemblyName=$(_TypeMapAssemblyName)
+ TypeMapOutputDirectory=$(_TypeMapOutputDirectory)
UseLlvm=$(MtouchUseLlvm)
Verbosity=$(_BundlerVerbosity)
Warn=$(_BundlerWarn)
@@ -726,6 +741,7 @@
+
@@ -760,7 +776,8 @@
<_TrimmerCustomSteps Include="$(_AdditionalTaskAssembly)" BeforeStep="MarkStep" Type="MonoTouch.Tuner.RegistrarRemovalTrackingStep" />
<_TrimmerCustomSteps Include="$(_AdditionalTaskAssembly)" BeforeStep="MarkStep" Condition="'$(_AreAnyAssembliesTrimmed)' == 'true'" Type="Xamarin.Linker.Steps.PreMarkDispatcher" />
- <_TrimmerCustomSteps Include="$(_AdditionalTaskAssembly)" BeforeStep="MarkStep" Type="Xamarin.Linker.ManagedRegistrarStep" Condition="'$(Registrar)' == 'managed-static'" />
+ <_TrimmerCustomSteps Include="$(_AdditionalTaskAssembly)" BeforeStep="MarkStep" Type="Xamarin.Linker.ManagedRegistrarStep" Condition="'$(Registrar)' == 'managed-static' Or '$(Registrar)' == 'trimmable-static'" />
+ <_TrimmerCustomSteps Include="$(_AdditionalTaskAssembly)" BeforeStep="MarkStep" Type="Xamarin.Linker.TrimmableRegistrarStep" Condition="'$(Registrar)' == 'trimmable-static'" />
diff --git a/msbuild/Xamarin.Shared/Xamarin.Shared.props b/msbuild/Xamarin.Shared/Xamarin.Shared.props
index 4b2c9b8173b7..01c764d59679 100644
--- a/msbuild/Xamarin.Shared/Xamarin.Shared.props
+++ b/msbuild/Xamarin.Shared/Xamarin.Shared.props
@@ -224,6 +224,10 @@ Copyright (C) 2020 Microsoft. All rights reserved.
<_NativeExecutableName Condition="'$(_NativeExecutableName)' == ''">$(AssemblyName)
+
+
+ <_TypeMapAssemblyName Condition="'$(_TypeMapAssemblyName)' == ''">_Microsoft.$(_PlatformName).TypeMaps
+ <_TypeMapOutputDirectory Condition="'$(_TypeMapOutputDirectory)' == ''">$(DeviceSpecificIntermediateOutputPath)typemap\
diff --git a/runtime/Delegates.cs.t4 b/runtime/Delegates.cs.t4
index c113d2935358..3ad9caacd8e7 100644
--- a/runtime/Delegates.cs.t4
+++ b/runtime/Delegates.cs.t4
@@ -72,7 +72,7 @@ namespace ObjCRuntime {
Write ("\t\t\tif (IsCoreCLR) {\n\t");
}
if (d.SkipManagedStaticRegistrar) {
- Write ("\t\t\tif (!Runtime.IsManagedStaticRegistrar) {\n\t");
+ Write ("\t\t\tif (!Runtime.IsManagedStaticRegistrar && !Runtime.IsTrimmableStaticRegistrar) {\n\t");
}
#>
options->Delegates-><#= d.SimpleEntryPoint #> = (IntPtr) (void *) <#= d.UnmanagedDelegateCast #> &<#= d.SimpleEntryPoint #>;
diff --git a/runtime/delegates.t4 b/runtime/delegates.t4
index 783a278042fe..42bd87081b07 100644
--- a/runtime/delegates.t4
+++ b/runtime/delegates.t4
@@ -674,7 +674,8 @@
new XDelegate ("void *", "IntPtr", "xamarin_lookup_unmanaged_function",
"const char *", "IntPtr", "assembly",
"const char *", "IntPtr", "symbol",
- "int32_t", "int", "id"
+ "int32_t", "int", "id",
+ "const char *", "IntPtr", "objcClassName"
) {
WrappedManagedFunction = "LookupUnmanagedFunction",
},
diff --git a/runtime/runtime.m b/runtime/runtime.m
index 0acf1bcf0b93..63d5d0fe7199 100644
--- a/runtime/runtime.m
+++ b/runtime/runtime.m
@@ -132,7 +132,7 @@
enum InitializationFlags : int {
InitializationFlagsIsPartialStaticRegistrar = 0x01,
InitializationFlagsIsManagedStaticRegistrar = 0x02,
- /* unused = 0x04,*/
+ InitializationFlagsIsTrimmableStaticRegistrar = 0x04,
/* unused = 0x08,*/
InitializationFlagsIsSimulator = 0x10,
InitializationFlagsIsCoreCLR = 0x20,
@@ -2553,7 +2553,7 @@ -(struct NSObjectData*) xamarinGetNSObjectData;
}
void
-xamarin_registrar_dlsym (void **function_pointer, const char *assembly, const char *symbol, int32_t id)
+xamarin_registrar_dlsym (void **function_pointer, const char *assembly, const char *symbol, int32_t id, const char* objcClassName)
{
if (*function_pointer != NULL)
return;
@@ -2563,7 +2563,7 @@ -(struct NSObjectData*) xamarinGetNSObjectData;
return;
GCHandle exception_gchandle = INVALID_GCHANDLE;
- *function_pointer = xamarin_lookup_unmanaged_function (assembly, symbol, id, &exception_gchandle);
+ *function_pointer = xamarin_lookup_unmanaged_function (assembly, symbol, id, objcClassName, &exception_gchandle);
if (*function_pointer != NULL)
return;
@@ -3053,6 +3053,16 @@ -(struct NSObjectData*) xamarinGetNSObjectData
}
}
+void
+xamarin_set_is_trimmable_static_registrar (bool value)
+{
+ if (value) {
+ options.flags = (InitializationFlags) (options.flags | InitializationFlagsIsTrimmableStaticRegistrar);
+ } else {
+ options.flags = (InitializationFlags) (options.flags & ~InitializationFlagsIsTrimmableStaticRegistrar);
+ }
+}
+
bool
xamarin_is_managed_exception_marshaling_disabled ()
{
diff --git a/runtime/xamarin/runtime.h b/runtime/xamarin/runtime.h
index 8afa2ab69ce9..774713b78dd7 100644
--- a/runtime/xamarin/runtime.h
+++ b/runtime/xamarin/runtime.h
@@ -256,6 +256,7 @@ void xamarin_check_objc_type (id obj, Class expected_class, SEL sel, id self,
#endif
void xamarin_set_is_managed_static_registrar (bool value);
+void xamarin_set_is_trimmable_static_registrar (bool value);
void xamarin_process_nsexception (NSException *exc);
void xamarin_process_nsexception_using_mode (NSException *ns_exception, bool throwManagedAsDefault, GCHandle *output_exception);
@@ -308,7 +309,7 @@ bool xamarin_is_user_type (Class cls);
* symbol: the symbol to look up. Can be NULL to save space (this value isn't used except in error messages).
* id: a numerical id for faster lookup (than doing string comparisons on the symbol name).
*/
-void xamarin_registrar_dlsym (void **function_pointer, const char *assembly, const char *symbol, int32_t id);
+void xamarin_registrar_dlsym (void **function_pointer, const char *assembly, const char *symbol, int32_t id, const char* objcClassName);
/*
* Wrapper GCHandle functions that takes pointer sized handles instead of ints,
diff --git a/src/Foundation/NSObject2.cs b/src/Foundation/NSObject2.cs
index a303621f5e77..e15f95c8c00e 100644
--- a/src/Foundation/NSObject2.cs
+++ b/src/Foundation/NSObject2.cs
@@ -373,6 +373,10 @@ public void Dispose ()
[UnconditionalSuppressMessage ("", "IL2072", Justification = "The APIs this method tries to access are marked by other means, so this is linker-safe.")]
internal static IntPtr CreateNSObject (IntPtr type_gchandle, IntPtr handle, Flags flags)
{
+ // This method should never be called when using the trimmable static registrar, so assert that never happens by throwing an exception in that case.
+ if (Runtime.IsTrimmableStaticRegistrar)
+ throw new System.Diagnostics.UnreachableException ();
+
// Note that the code in this method doesn't necessarily work with NativeAOT, so assert that never happens by throwing an exception if using the managed static registrar (which is required for NativeAOT)
if (Runtime.IsManagedStaticRegistrar) {
throw new System.Diagnostics.UnreachableException ();
diff --git a/src/ILLink.Substitutions.MacCatalyst.xml b/src/ILLink.Substitutions.MacCatalyst.xml
index c139f91583b5..7967b89f7039 100644
--- a/src/ILLink.Substitutions.MacCatalyst.xml
+++ b/src/ILLink.Substitutions.MacCatalyst.xml
@@ -10,6 +10,8 @@
+
+
diff --git a/src/ILLink.Substitutions.iOS.xml b/src/ILLink.Substitutions.iOS.xml
index de3ee88011ff..a6cae5234d43 100644
--- a/src/ILLink.Substitutions.iOS.xml
+++ b/src/ILLink.Substitutions.iOS.xml
@@ -12,6 +12,8 @@
+
+
diff --git a/src/ILLink.Substitutions.macOS.xml b/src/ILLink.Substitutions.macOS.xml
index 1ad679b886f2..aa69619fcc9a 100644
--- a/src/ILLink.Substitutions.macOS.xml
+++ b/src/ILLink.Substitutions.macOS.xml
@@ -9,6 +9,8 @@
+
+
diff --git a/src/ILLink.Substitutions.tvOS.xml b/src/ILLink.Substitutions.tvOS.xml
index 68854b87bcab..775071e00939 100644
--- a/src/ILLink.Substitutions.tvOS.xml
+++ b/src/ILLink.Substitutions.tvOS.xml
@@ -12,6 +12,8 @@
+
+
diff --git a/src/ObjCRuntime/Blocks.cs b/src/ObjCRuntime/Blocks.cs
index e492ab7307cc..be694cb1c7eb 100644
--- a/src/ObjCRuntime/Blocks.cs
+++ b/src/ObjCRuntime/Blocks.cs
@@ -511,6 +511,10 @@ public static bool IsManagedBlock (IntPtr block)
[UnconditionalSuppressMessage ("", "IL2072", Justification = "The APIs this method tries to access are marked by other means, so this is linker-safe.")]
static Type? GetDelegateProxyType (MethodInfo minfo, uint token_ref, out MethodInfo? baseMethod)
{
+ // This method should never be called when using the trimmable static registrar, so assert that never happens by throwing an exception in that case.
+ if (Runtime.IsTrimmableStaticRegistrar)
+ throw new System.Diagnostics.UnreachableException ();
+
// Note that the code in this method doesn't necessarily work with NativeAOT, so assert that never happens by throwing an exception if using the managed static registrar (which is required for NativeAOT)
if (Runtime.IsManagedStaticRegistrar)
throw new System.Diagnostics.UnreachableException ();
@@ -610,6 +614,10 @@ static IntPtr CreateBlockForDelegate (Delegate @delegate, Delegate delegateProxy
[UnconditionalSuppressMessage ("", "IL2075", Justification = "The APIs this method tries to access are marked by other means, so this is linker-safe.")]
internal static IntPtr GetBlockForDelegate (MethodInfo minfo, object? @delegate, uint token_ref, string? signature)
{
+ // This method should never be called when using the trimmable static registrar, so assert that never happens by throwing an exception in that case.
+ if (Runtime.IsTrimmableStaticRegistrar)
+ throw new System.Diagnostics.UnreachableException ();
+
// Note that the code in this method doesn't necessarily work with NativeAOT, so assert that never happens by throwing an exception if using the managed static registrar (which is required for NativeAOT)
if (Runtime.IsManagedStaticRegistrar)
throw new System.Diagnostics.UnreachableException ();
diff --git a/src/ObjCRuntime/Class.cs b/src/ObjCRuntime/Class.cs
index bf50b4aa97fc..82c0d85be68a 100644
--- a/src/ObjCRuntime/Class.cs
+++ b/src/ObjCRuntime/Class.cs
@@ -6,6 +6,7 @@
//
// #define LOG_TYPELOAD
+// #define LOG_TRIMMABLE_TYPEMAP
#nullable enable
@@ -136,8 +137,7 @@ public NativeHandle SuperClass {
///
public string? Name {
get {
- var ptr = class_getName (Handle);
- return Marshal.PtrToStringAuto (ptr);
+ return GetClassName (Handle);
}
}
@@ -290,7 +290,7 @@ internal static Type Lookup (IntPtr klass)
return Runtime.Registrar.Lookup (klass, throw_on_error);
if (throw_on_error)
- throw ErrorHelper.CreateError (8026, $"Can't lookup the Objective-C class 0x{klass.ToString ("x")} ({Marshal.PtrToStringAuto (class_getName (klass))}) when the dynamic registrar has been linked away.");
+ throw ErrorHelper.CreateError (8026, $"Can't lookup the Objective-C class 0x{klass.ToString ("x")} ({GetClassName (klass)}) when the dynamic registrar has been linked away.");
return null;
}
@@ -314,6 +314,20 @@ static string GetAssemblyName (Assembly assembly)
// Find the given managed type in the tables generated by the static registrar.
unsafe static IntPtr FindClass (Type type, out bool is_custom_type)
{
+ if (Runtime.IsTrimmableStaticRegistrar) {
+ var attrib = type.GetCustomAttribute ();
+ if (attrib is not null)
+ return attrib.GetClassHandle (out is_custom_type);
+
+ // The type we're looking for might be a type the registrar skipped, in which case we must
+ // find it in the mapping of skipped types.
+ if (TypeMaps.SkippedProxyTypes.TryGetValue (type, out var actualType))
+ return FindClass (actualType, out is_custom_type);
+
+ is_custom_type = false;
+ return IntPtr.Zero;
+ }
+
var map = Runtime.options->RegistrationMap;
is_custom_type = false;
@@ -355,7 +369,7 @@ unsafe static IntPtr FindClass (Type type, out bool is_custom_type)
var rv = class_map.handle;
is_custom_type = (class_map.flags & Runtime.MTTypeFlags.CustomType) == Runtime.MTTypeFlags.CustomType;
#if LOG_TYPELOAD
- Runtime.NSLog ($"FindClass ({type.FullName}, {is_custom_type}): 0x{rv.ToString ("x")} = {Marshal.PtrToStringAuto (class_getName (rv))}.");
+ Runtime.NSLog ($"FindClass ({type.FullName}, {is_custom_type}): 0x{rv.ToString ("x")} = {GetClassName (rv)}.");
#endif
return rv;
}
@@ -433,19 +447,85 @@ internal static unsafe int FindMapIndex (Runtime.MTClassMap* array, int lo, int
return -1;
}
+ internal static bool TryGetTrimmableProxyTypeAttribute (string? className, [NotNullWhen (true)] out NSObjectProxyAttribute? proxyAttribute, [NotNullWhen (true)] out Type? managedType)
+ {
+ proxyAttribute = null;
+ managedType = null;
+
+ if (string.IsNullOrEmpty (className)) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"GetTrimmableProxyTypeAttribute ({className}) = no class name provided");
+#endif
+ return false;
+ }
+
+ if (!TypeMaps.NSObjectTypes.TryGetValue (className, out managedType)) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"GetTrimmableProxyTypeAttribute ({className}) not found in type map");
+#endif
+ return false;
+ }
+
+ if (!TypeMaps.NSObjectProxyTypes.TryGetValue (managedType, out var proxyType)) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"GetTrimmableProxyTypeAttribute ({className}) found in type map, but proxy type not found");
+#endif
+ return false;
+ }
+
+ proxyAttribute = proxyType.GetCustomAttribute ();
+ if (proxyAttribute is null) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"GetTrimmableProxyTypeAttribute ({className}) found in proxy type map, but could not create proxy attribute for it");
+#endif
+ return false;
+ }
+
+ return proxyAttribute is not null;
+ }
+
+ static Type? FindTypeInTrimmableMap (NativeHandle @class, out bool is_custom_type)
+ {
+ is_custom_type = false;
+
+ var className = GetClassName (@class);
+ if (!TryGetTrimmableProxyTypeAttribute (className, out var attrib, out var managedType)) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"FindType (0x{@class:X} = {className}) could not get proxy attribute");
+#endif
+ return null;
+ }
+
+ var ch = attrib.GetClassHandle (out is_custom_type);
+ if (ch != @class) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"FindType (0x{@class:X} = {className}) found in proxy type map, and attribute, but attribute's class handle doesn't match (0x{ch:X} != 0x{@class:X})");
+#endif
+ }
+
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"FindType (0x{@class:X} = {className}) found {managedType}");
+#endif
+
+ return managedType;
+ }
+
internal unsafe static Type? FindType (NativeHandle @class, out bool is_custom_type)
{
+ if (Runtime.IsTrimmableStaticRegistrar)
+ return FindTypeInTrimmableMap (@class, out is_custom_type);
+
var map = Runtime.options->RegistrationMap;
#if LOG_TYPELOAD
- Runtime.NSLog ($"FindType (0x{@class:X} = {Marshal.PtrToStringAuto (class_getName (@class))})");
+ Runtime.NSLog ($"FindType (0x{@class:X} = {GetClassName (@class)})");
#endif
is_custom_type = false;
if (map is null) {
#if LOG_TYPELOAD
- Runtime.NSLog ($"FindType (0x{@class:X} = {Marshal.PtrToStringAuto (class_getName (@class))}) => found no map.");
+ Runtime.NSLog ($"FindType (0x{@class:X} = {GetClassName (@class)}) => found no map.");
#endif
return null;
}
@@ -454,12 +534,12 @@ internal static unsafe int FindMapIndex (Runtime.MTClassMap* array, int lo, int
var mapIndex = FindMapIndex (map->map, 0, map->map_count - 1, @class);
if (mapIndex == -1) {
#if LOG_TYPELOAD
- Runtime.NSLog ($"FindType (0x{@class:X} = {Marshal.PtrToStringAuto (class_getName (@class))}) => found no type.");
+ Runtime.NSLog ($"FindType (0x{@class:X} = {GetClassName (@class)}) => found no type.");
#endif
return null;
}
#if LOG_TYPELOAD
- Runtime.NSLog ($"FindType (0x{@class:X} = {Marshal.PtrToStringAuto (class_getName (@class))}) => found index {mapIndex}.");
+ Runtime.NSLog ($"FindType (0x{@class:X} = {GetClassName (@class)}) => found index {mapIndex}.");
#endif
is_custom_type = (map->map [mapIndex].flags & Runtime.MTTypeFlags.CustomType) == Runtime.MTTypeFlags.CustomType;
@@ -467,7 +547,7 @@ internal static unsafe int FindMapIndex (Runtime.MTClassMap* array, int lo, int
var type = class_to_type [mapIndex];
if (type is not null) {
#if LOG_TYPELOAD
- Runtime.NSLog ($"FindType (0x{@class:X} = {Marshal.PtrToStringAuto (class_getName (@class))}) => found type {type.FullName} for map index {mapIndex}.");
+ Runtime.NSLog ($"FindType (0x{@class:X} = {GetClassName (@class)}) => found type {type.FullName} for map index {mapIndex}.");
#endif
return type;
}
@@ -477,7 +557,7 @@ internal static unsafe int FindMapIndex (Runtime.MTClassMap* array, int lo, int
type = ResolveTypeTokenReference (type_reference);
#if LOG_TYPELOAD
- Runtime.NSLog ($"FindType (0x{@class:X} = {Marshal.PtrToStringAuto (class_getName (@class))}) => {type?.FullName}; is custom: {is_custom_type} (token reference: 0x{type_reference:X}).");
+ Runtime.NSLog ($"FindType (0x{@class:X} = {GetClassName (@class)}) => {type?.FullName}; is custom: {is_custom_type} (token reference: 0x{type_reference:X}).");
#endif
class_to_type [mapIndex] = type;
@@ -562,6 +642,10 @@ internal static unsafe int FindMapIndex (Runtime.MTClassMap* array, int lo, int
static MemberInfo? ResolveToken (Assembly assembly, Module? module, uint token)
{
+ // This method should never be called when using the trimmable static registrar, so assert that never happens by throwing an exception in that case.
+ if (Runtime.IsTrimmableStaticRegistrar)
+ throw new System.Diagnostics.UnreachableException ();
+
if (!Runtime.IsManagedStaticRegistrar)
return ResolveTokenNonManagedStatic (assembly, module, token);
@@ -589,6 +673,10 @@ internal static unsafe int FindMapIndex (Runtime.MTClassMap* array, int lo, int
[UnconditionalSuppressMessage ("", "IL2026", Justification = "The APIs this method tries to access are marked by other means, so this is linker-safe.")]
static MemberInfo? ResolveTokenNonManagedStatic (Assembly assembly, Module? module, uint token)
{
+ // This method should never be called when using the trimmable static registrar, so assert that never happens by throwing an exception in that case.
+ if (Runtime.IsTrimmableStaticRegistrar)
+ throw new System.Diagnostics.UnreachableException ();
+
// This method should never be called when using the managed static registrar, so assert that never happens by throwing an exception in that case.
// This also takes care of NativeAOT, because the managed static registrar is required when using NativeAOT.
if (Runtime.IsManagedStaticRegistrar)
@@ -869,6 +957,12 @@ internal static bool class_addMethod (IntPtr cls, IntPtr name, IntPtr imp, strin
[DllImport (Messaging.LIBOBJC_DYLIB)]
internal static extern IntPtr class_getName (IntPtr cls);
+ static string? GetClassName (IntPtr cls)
+ {
+ var namePtr = class_getName (cls);
+ return Marshal.PtrToStringAuto (namePtr);
+ }
+
[DllImport (Messaging.LIBOBJC_DYLIB)]
internal static extern IntPtr class_getSuperclass (IntPtr cls);
diff --git a/src/ObjCRuntime/Registrar.cs b/src/ObjCRuntime/Registrar.cs
index 3e7c62a06ecb..173bf5645c4d 100644
--- a/src/ObjCRuntime/Registrar.cs
+++ b/src/ObjCRuntime/Registrar.cs
@@ -148,6 +148,10 @@ internal class ObjCType {
public bool IsCategory { get { return CategoryAttribute is not null; } }
+ public bool IsStubClass {
+ get => RegisterAttribute?.IsStubClass == true;
+ }
+
public ObjCType (Registrar registrar, TType type)
{
this.Registrar = registrar;
diff --git a/src/ObjCRuntime/RegistrarHelper.cs b/src/ObjCRuntime/RegistrarHelper.cs
index e334ebf10c59..6cafab3bec2b 100644
--- a/src/ObjCRuntime/RegistrarHelper.cs
+++ b/src/ObjCRuntime/RegistrarHelper.cs
@@ -173,7 +173,7 @@ static void Register (IManagedRegistrar registrar)
static Stopwatch? lookupWatch;
#endif
- internal static IntPtr LookupUnmanagedFunction (IntPtr assembly, string? symbol, int id)
+ internal static IntPtr LookupUnmanagedFunction (IntPtr assembly, string? symbol, int id, string? objcClassName)
{
IntPtr rv;
@@ -200,7 +200,39 @@ internal static IntPtr LookupUnmanagedFunction (IntPtr assembly, string? symbol,
if (rv != IntPtr.Zero)
return rv;
- throw ErrorHelper.CreateError (8001, "Unable to find the managed function with id {0} ({1})", id, symbol);
+ if (!string.IsNullOrEmpty (objcClassName)) {
+ rv = LookupUnmanagedFunctionInType (objcClassName, symbol);
+ }
+
+#if TRACE
+ lookupWatch.Stop ();
+
+ Console.WriteLine ("LookupUnmanagedFunction (0x{0} = {1}, {2}, {3}) => 0x{4} ElapsedMilliseconds: {5}", assembly.ToString ("x"), Marshal.PtrToStringAuto (assembly), symbol, id, rv.ToString ("x"), lookupWatch.ElapsedMilliseconds);
+#endif
+
+ if (rv != IntPtr.Zero)
+ return rv;
+
+ throw ErrorHelper.CreateError (8001, "Unable to find the managed function with id {0} ({1}, {2})", id, symbol, objcClassName);
+ }
+
+ static IntPtr LookupUnmanagedFunctionInType (string objcTypeName, string? symbol)
+ {
+ if (!Class.TryGetTrimmableProxyTypeAttribute (objcTypeName, out var attrib, out var _)) {
+#if TRACE
+ Console.WriteLine ($"LookupUnmanagedFunctionInType ({objcTypeName}, {symbol}) could not find proxy type");
+#endif
+ return IntPtr.Zero;
+ }
+
+
+ var rv = attrib.LookupUnmanagedFunction (symbol);
+
+#if TRACE
+ Console.WriteLine ($"LookupUnmanagedFunctionInType ({objcTypeName}, {symbol}) called {attrib.GetType ().FullName}::LookupUnmanagedFunction, got 0x{rv:x} back");
+#endif
+
+ return rv;
}
static IntPtr LookupUnmanagedFunctionInAssembly (IntPtr assembly_name, string? symbol, int id)
diff --git a/src/ObjCRuntime/Runtime.cs b/src/ObjCRuntime/Runtime.cs
index 7f63bdc3c785..28fbf852cef9 100644
--- a/src/ObjCRuntime/Runtime.cs
+++ b/src/ObjCRuntime/Runtime.cs
@@ -164,7 +164,7 @@ internal struct Trampolines {
internal enum InitializationFlags : int {
IsPartialStaticRegistrar = 0x01,
IsManagedStaticRegistrar = 0x02,
- /* unused = 0x04,*/
+ IsTrimmableStaticRegistrar = 0x04,
/* unused = 0x08,*/
IsSimulator = 0x10,
IsCoreCLR = 0x20,
@@ -251,6 +251,14 @@ internal unsafe static bool IsManagedStaticRegistrar {
}
}
+ [BindingImpl (BindingImplOptions.Optimizable)]
+ internal unsafe static bool IsTrimmableStaticRegistrar {
+ get {
+ // The linker may turn calls to this property into a constant
+ return options->Flags.HasFlag (InitializationFlags.IsTrimmableStaticRegistrar);
+ }
+ }
+
/// If dynamic registration is supported.
/// If dynamic registration is supported.
///
@@ -298,6 +306,11 @@ unsafe static void SafeInitialize (InitializationOptions* options, IntPtr* excep
Initialize (options);
} catch (Exception e) {
*exception_gchandle = AllocGCHandle (e);
+ try {
+ Runtime.NSLog ($"Failed to initialize the runtime: {e}");
+ } catch {
+ // ignore any exceptions here
+ }
}
}
@@ -337,6 +350,11 @@ unsafe static void Initialize (InitializationOptions* options)
block_lifetime_table = new ConditionalWeakTable ();
lock_obj = new object ();
+#if NET11_0_OR_GREATER
+ if (IsTrimmableStaticRegistrar)
+ TypeMaps.Initialize ();
+#endif
+
NSObjectClass = NSObject.Initialize ();
if (DynamicRegistrationSupported) {
@@ -1334,6 +1352,41 @@ static void AppendAdditionalInformation (StringBuilder msg, IntPtr sel, RuntimeM
if (type is null)
throw new ArgumentNullException (nameof (type));
+ if (Runtime.IsTrimmableStaticRegistrar) {
+ var lookupType = type;
+ if (typeof (T) == type && type.IsGenericType) {
+ var inst = ConstructNSObjectViaFactoryMethod (ptr);
+ if (inst is not null) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"ConstructNSObject<{typeof (T).FullName}> (0x{@ptr:X}, {type}) created '{inst.GetType ().FullName}' instance using static interface factory method.");
+#endif
+ return inst;
+ }
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"ConstructNSObject<{typeof (T).FullName}> (0x{@ptr:X}, {type}) failed to create instance using static interface factory method.");
+#endif
+ CannotCreateManagedInstanceOfGenericType (ptr, IntPtr.Zero, type, missingCtorResolution, sel, method_handle);
+ return null;
+ }
+
+ if (TypeMaps.NSObjectProxyTypes.TryGetValue (lookupType, out var proxyType)) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"ConstructNSObject<{typeof (T).FullName}> (0x{@ptr:X}, {type}) found in proxy map with type '{proxyType.FullName}' for lookup type '{lookupType.FullName}'");
+#endif
+ var attrib = proxyType.GetCustomAttribute ();
+ if (attrib is null)
+ throw new InvalidOperationException ($"Type '{proxyType.FullName}' is expected to have an NSObjectProxyAttribute."); // TODO: better exception
+ var instance = (T?) (object?) attrib.CreateObject (ptr);
+ if (instance is not null)
+ return instance;
+ }
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"ConstructNSObject<{typeof (T).FullName}> (0x{@ptr:X}, {type}) did not find type '{lookupType.FullName}' in proxy map");
+#endif
+ MissingCtor (ptr, IntPtr.Zero, type, missingCtorResolution, sel, method_handle);
+ return null;
+ }
+
if (Runtime.IsManagedStaticRegistrar) {
T? instance = default;
var nativeHandle = new NativeHandle (ptr);
@@ -1412,6 +1465,58 @@ static void AppendAdditionalInformation (StringBuilder msg, IntPtr sel, RuntimeM
if (type.IsByRef)
type = type.GetElementType ()!;
+ if (Runtime.IsTrimmableStaticRegistrar) {
+ if (typeof (T) == type && type.IsGenericType) {
+ var inst = ConstructINativeObjectViaFactoryMethod (ptr, owns);
+ if (inst is not null) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"ConstructINativeObject<{typeof (T).FullName}> (0x{@ptr:X}, {type}) created '{inst.GetType ().FullName}' instance using static interface factory method.");
+#endif
+ return inst;
+ }
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"ConstructINativeObject<{typeof (T).FullName}> (0x{@ptr:X}, {type}) failed to create instance using static interface factory method.");
+#endif
+ CannotCreateManagedInstanceOfGenericType (ptr, IntPtr.Zero, type, missingCtorResolution, sel, method_handle);
+ return default (T);
+ }
+ if (TypeMaps.NSObjectProxyTypes.TryGetValue (type, out var proxyType)) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"ConstructINativeObject<{typeof (T).FullName}> (0x{@ptr:X}, {type.FullName}) found in proxy map");
+#endif
+ var attrib = proxyType.GetCustomAttribute ();
+ if (attrib is null)
+ throw new InvalidOperationException ($"Type '{proxyType.FullName}' is expected to have an NSObjectProxyAttribute."); // TODO: better exception
+ var rv = (T?) (object?) attrib.CreateObject (ptr);
+ if (owns)
+ Runtime.TryReleaseINativeObject (rv);
+ return rv;
+ }
+ if (TypeMaps.ProtocolProxyTypes.TryGetValue (type, out var protocolProxyType)) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"ConstructINativeObject<{typeof (T).FullName}> (0x{@ptr:X}, {type.FullName}) found in protocol proxy map");
+#endif
+ var attrib = protocolProxyType.GetCustomAttribute ();
+ if (attrib is null)
+ throw new InvalidOperationException ($"Type '{protocolProxyType.FullName}' is expected to have an ProtocolProxyAttribute."); // TODO: better exception
+ return (T?) (object?) attrib.CreateObject (ptr, owns);
+ }
+ if (TypeMaps.INativeObjectProxyTypes.TryGetValue (type, out var inativeObjectProxyType)) {
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"ConstructINativeObject<{typeof (T).FullName}> (0x{@ptr:X}, {type.FullName}) found in INativeObject proxy map");
+#endif
+ var attrib = inativeObjectProxyType.GetCustomAttribute ();
+ if (attrib is null)
+ throw new InvalidOperationException ($"Type '{inativeObjectProxyType.FullName}' is expected to have an INativeObjectProxyAttribute."); // TODO: better exception
+ return (T?) (object?) attrib.CreateObject (ptr, owns);
+ }
+#if LOG_TRIMMABLE_TYPEMAP
+ Runtime.NSLog ($"ConstructINativeObject<{typeof (T).FullName}> (0x{@ptr:X}) did not find type '{type.FullName}' in any map");
+#endif
+ MissingCtor (ptr, IntPtr.Zero, type, missingCtorResolution, sel, method_handle);
+ return default (T);
+ }
+
if (Runtime.IsManagedStaticRegistrar) {
var nativeHandle = new NativeHandle (ptr);
T? instance = default (T);
@@ -2016,7 +2121,7 @@ static Type LookupINativeObjectImplementation (IntPtr ptr, Type target_type, Typ
// native objects and NSObject instances.
throw ErrorHelper.CreateError (8004, $"Cannot create an instance of {implementation.FullName} for the native object 0x{ptr:x} (of type '{Class.class_getName (Class.GetClassForObject (ptr))}'), because another instance already exists for this native object (of type {o.GetType ().FullName}).");
}
- if (!Runtime.IsManagedStaticRegistrar) {
+ if (!Runtime.IsManagedStaticRegistrar && !Runtime.IsTrimmableStaticRegistrar) {
// For other registrars other than managed-static the generic parameter of ConstructNSObject is used
// only to cast the return value so we can safely pass NSObject here to satisfy the constraints of the
// generic parameter.
@@ -2065,6 +2170,9 @@ static void TryReleaseINativeObject (INativeObject? obj)
var rv = RegistrarHelper.FindProtocolWrapperType (type);
if (rv is not null)
return rv;
+ } else if (IsTrimmableStaticRegistrar) {
+ if (TypeMaps.ProtocolWrapperTypes.TryGetValue (type, out var protocolWrapperType))
+ return protocolWrapperType;
} else {
unsafe {
var map = options->RegistrationMap;
@@ -2684,9 +2792,9 @@ static nint InvokeConformsToProtocol (IntPtr gchandle, IntPtr handle, IntPtr pro
return rv ? 1 : 0;
}
- static IntPtr LookupUnmanagedFunction (IntPtr assembly, IntPtr symbol, int id)
+ static IntPtr LookupUnmanagedFunction (IntPtr assembly, IntPtr symbol, int id, IntPtr objcClassName)
{
- return RegistrarHelper.LookupUnmanagedFunction (assembly, Marshal.PtrToStringAuto (symbol), id);
+ return RegistrarHelper.LookupUnmanagedFunction (assembly, Marshal.PtrToStringAuto (symbol), id, Marshal.PtrToStringAuto (objcClassName));
}
}
diff --git a/src/ObjCRuntime/TypeMaps.cs b/src/ObjCRuntime/TypeMaps.cs
new file mode 100644
index 000000000000..97d6dc1b1538
--- /dev/null
+++ b/src/ObjCRuntime/TypeMaps.cs
@@ -0,0 +1,146 @@
+// Copyright (c) Microsoft Corporation.
+// Licensed under the MIT License.
+
+using System.Collections.Generic;
+using System.Diagnostics.CodeAnalysis;
+
+namespace ObjCRuntime;
+
+// The trimmable static registrar makes this type public when needed.
+abstract class NSObjectProxyAttribute : Attribute {
+ protected NSObjectProxyAttribute () { }
+
+ public abstract NSObject? CreateObject (IntPtr handle);
+ public abstract IntPtr GetClassHandle (out bool is_custom_type);
+ public abstract IntPtr LookupUnmanagedFunction (string? name);
+}
+
+// The trimmable static registrar makes this type public when needed.
+abstract class ProtocolProxyAttribute : Attribute {
+ public abstract INativeObject? CreateObject (IntPtr handle, bool owns);
+}
+
+// The trimmable static registrar makes this type public when needed.
+abstract class INativeObjectProxyAttribute : Attribute {
+ public abstract INativeObject? CreateObject (IntPtr handle, bool owns);
+}
+
+// The trimmable static registrar makes this type public when needed.
+sealed class SkippedObjectiveCTypeUniverse {
+ SkippedObjectiveCTypeUniverse () { }
+}
+
+static class TypeMaps {
+#if NET11_0_OR_GREATER
+#pragma warning disable 8618 // "Non-nullable field '...' must contain a non-null value when exiting constructor. Consider declaring the field as nullable.": we make sure through other means that these will never be null
+ internal static IReadOnlyDictionary NSObjectTypes;
+ internal static IReadOnlyDictionary SkippedProxyTypes;
+ internal static IReadOnlyDictionary NSObjectProxyTypes;
+ internal static IReadOnlyDictionary INativeObjectProxyTypes;
+ internal static IReadOnlyDictionary ProtocolProxyTypes;
+ internal static IReadOnlyDictionary ProtocolWrapperTypes;
+#pragma warning restore 8618
+
+ internal static void Initialize ()
+ {
+ NSObjectTypes = TypeMapping.GetOrCreateExternalTypeMapping ();
+ SkippedProxyTypes = TypeMapping.GetOrCreateProxyTypeMapping ();
+ NSObjectProxyTypes = TypeMapping.GetOrCreateProxyTypeMapping ();
+ INativeObjectProxyTypes = TypeMapping.GetOrCreateProxyTypeMapping ();
+ ProtocolProxyTypes = TypeMapping.GetOrCreateProxyTypeMapping ();
+ ProtocolWrapperTypes = TypeMapping.GetOrCreateProxyTypeMapping ();
+ }
+#else
+ static IReadOnlyDictionary? nsobject_types;
+ internal static IReadOnlyDictionary NSObjectTypes {
+ get {
+ if (nsobject_types is null)
+ Initialize ();
+ return nsobject_types;
+ }
+ }
+
+ static IReadOnlyDictionary? skipped_proxy_types;
+ internal static IReadOnlyDictionary SkippedProxyTypes {
+ get {
+ if (skipped_proxy_types is null)
+ Initialize ();
+ return skipped_proxy_types;
+ }
+ }
+
+ static IReadOnlyDictionary? nsobject_proxy_types;
+ internal static IReadOnlyDictionary NSObjectProxyTypes {
+ get {
+ if (nsobject_proxy_types is null)
+ Initialize ();
+ return nsobject_proxy_types;
+ }
+ }
+
+ static IReadOnlyDictionary? inativeobject_proxy_types;
+ internal static IReadOnlyDictionary INativeObjectProxyTypes {
+ get {
+ if (inativeobject_proxy_types is null)
+ Initialize ();
+ return inativeobject_proxy_types;
+ }
+ }
+
+ static IReadOnlyDictionary? protocol_proxy_types;
+ internal static IReadOnlyDictionary ProtocolProxyTypes {
+ get {
+ if (protocol_proxy_types is null)
+ Initialize ();
+ return protocol_proxy_types;
+ }
+ }
+
+ static IReadOnlyDictionary? protocol_wrapper_types;
+ internal static IReadOnlyDictionary ProtocolWrapperTypes {
+ get {
+ if (protocol_wrapper_types is null)
+ Initialize ();
+ return protocol_wrapper_types;
+ }
+ }
+
+ static object lock_obj = new object ();
+
+ [MemberNotNull (nameof (nsobject_types))]
+ [MemberNotNull (nameof (skipped_proxy_types))]
+ [MemberNotNull (nameof (nsobject_proxy_types))]
+ [MemberNotNull (nameof (inativeobject_proxy_types))]
+ [MemberNotNull (nameof (protocol_proxy_types))]
+ [MemberNotNull (nameof (protocol_wrapper_types))]
+ internal static void Initialize ()
+ {
+ // In .NET 10 we can only create the type maps from the entry assembly, which can only be done after calling the
+ // main assembly's Main method - so we need to create the type maps on demand, instead of from Runtime.Initialize.
+ // For reference, this is what happens:
+ // System.InvalidOperationException: Entry assembly is required but was not found.
+ // at System.Runtime.InteropServices.TypeMapLazyDictionary.CreateMaps(RuntimeType groupType, newExternalTypeEntry, newProxyTypeEntry)
+ // at System.Runtime.InteropServices.TypeMapLazyDictionary.CreateExternalTypeMap(RuntimeType groupType)
+ lock (lock_obj) {
+ if (nsobject_types is null)
+ nsobject_types = TypeMapping.GetOrCreateExternalTypeMapping ();
+
+ if (skipped_proxy_types is null)
+ skipped_proxy_types = TypeMapping.GetOrCreateProxyTypeMapping ();
+
+ if (nsobject_proxy_types is null)
+ nsobject_proxy_types = TypeMapping.GetOrCreateProxyTypeMapping ();
+
+ if (inativeobject_proxy_types is null)
+ inativeobject_proxy_types = TypeMapping.GetOrCreateProxyTypeMapping ();
+
+ if (protocol_proxy_types is null)
+ protocol_proxy_types = TypeMapping.GetOrCreateProxyTypeMapping ();
+
+ if (protocol_wrapper_types is null)
+ protocol_wrapper_types = TypeMapping.GetOrCreateProxyTypeMapping ();
+ }
+ }
+#endif // NET11_0_OR_GREATER
+}
+
diff --git a/src/frameworks.sources b/src/frameworks.sources
index 6573e8e10f1b..443c2c13f93f 100644
--- a/src/frameworks.sources
+++ b/src/frameworks.sources
@@ -1952,6 +1952,7 @@ SHARED_SOURCES = \
ObjCRuntime/TrampolineBlockBase.cs \
ObjCRuntime/TransientAttribute.cs \
ObjCRuntime/TypeConverter.cs \
+ ObjCRuntime/TypeMaps.cs \
ObjCRuntime/UserDelegateTypeAttribute.cs \
System.Net.Http/CFContentStream.cs \
System.Net.Http/CFNetworkHandler.cs \
diff --git a/tests/common/shared-dotnet.mk b/tests/common/shared-dotnet.mk
index 98236b97b959..31af93b7f253 100644
--- a/tests/common/shared-dotnet.mk
+++ b/tests/common/shared-dotnet.mk
@@ -174,6 +174,7 @@ reload-and-run:
$(Q) $(MAKE) run
build: prepare
+ @echo "Building $(wildcard *.?.csproj)..."
$(Q) $(DOTNET) build "/bl:$(abspath $@-$(BINLOG_TIMESTAMP).binlog)" *.?sproj $(DOTNET_BUILD_VERBOSITY) $(BUILD_ARGUMENTS) $(CONFIG_ARGUMENT) $(UNIVERSAL_ARGUMENT) $(NATIVEAOT_ARGUMENTS) $(TEST_VARIATION_ARGUMENT)
run: export SIMCTL_CHILD_NUNIT_AUTOSTART=true
diff --git a/tests/common/test-variations.csproj b/tests/common/test-variations.csproj
index 6826b694f495..9c60d219de2e 100644
--- a/tests/common/test-variations.csproj
+++ b/tests/common/test-variations.csproj
@@ -18,6 +18,8 @@
+
+
@@ -80,6 +82,12 @@
<_TestVariationApplied>true
+
+ trimmable-static
+ <_TestVariationApplied>true
+
+
+
$(AppBundleExtraOptions) --optimize:all
static
@@ -111,6 +119,14 @@
<_TestVariationApplied>true
+
+ $(AppBundleExtraOptions) --optimize:all
+ trimmable-static
+ full
+ $(DefineConstants);OPTIMIZEALL
+ <_TestVariationApplied>true
+
+
<_InvalidTestVariations Include="$(TestVariation.Split('|'))" Exclude="@(TestVariations)" />
diff --git a/tests/dotnet/UnitTests/AppSizeTest.cs b/tests/dotnet/UnitTests/AppSizeTest.cs
index f7bf1cf086f4..ce21dbbb65e0 100644
--- a/tests/dotnet/UnitTests/AppSizeTest.cs
+++ b/tests/dotnet/UnitTests/AppSizeTest.cs
@@ -215,6 +215,62 @@ static string FormatBytes (long bytes, bool alwaysShowSign = false)
{
return $"{(alwaysShowSign && bytes > 0 ? "+" : "")}{bytes:N0} bytes ({bytes / 1024.0:N1} KB = {bytes / (1024.0 * 1024.0):N1} MB)";
}
+
+ // TODO: move these tests up with the other tests for the final merge.
+
+ [TestCase (ApplePlatform.iOS, "ios-arm64")]
+ [TestCase (ApplePlatform.TVOS, "tvos-arm64")]
+ [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")]
+ public void MonoVM_TrimmableStatic (ApplePlatform platform, string runtimeIdentifiers)
+ {
+ var dict = new Dictionary () {
+ { "UseMonoRuntime", "true" },
+ { "NoDSymUtil", "false" },
+ { "Registrar", "trimmable-static" },
+ };
+ Run (platform, runtimeIdentifiers, "Release", $"{platform}-MonoVM-TrimmableStatic", true, dict);
+ }
+
+ [TestCase (ApplePlatform.iOS, "ios-arm64")]
+ [TestCase (ApplePlatform.TVOS, "tvos-arm64")]
+ [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")]
+ public void MonoVM_Interpreter_TrimmableStatic (ApplePlatform platform, string runtimeIdentifiers)
+ {
+ var dict = new Dictionary () {
+ { "UseInterpreter", "true" },
+ { "UseMonoRuntime", "true" },
+ { "NoDSymUtil", "false" },
+ { "Registrar", "trimmable-static" },
+ };
+ Run (platform, runtimeIdentifiers, "Release", $"{platform}-MonoVM-interpreter-TrimmableStatic", true, dict);
+ }
+
+ [TestCase (ApplePlatform.iOS, "ios-arm64")]
+ [TestCase (ApplePlatform.TVOS, "tvos-arm64")]
+ [TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")]
+ [TestCase (ApplePlatform.MacOSX, "osx-arm64;osx-x64")]
+ public void NativeAOT_TrimmableStatic (ApplePlatform platform, string runtimeIdentifiers)
+ {
+ var dict = new Dictionary () {
+ { "PublishAot", "true" },
+ { "_IsPublishing", "true" },
+ { "NoDSymUtil", "false" }, // off by default for macOS, but we want to test it, so enable it
+ { "Registrar", "trimmable-static" },
+ };
+ Run (platform, runtimeIdentifiers, "Release", $"{platform}-NativeAOT-TrimmableStatic", false, dict);
+ }
+
+ [TestCase (ApplePlatform.MacOSX, "osx-arm64;osx-x64", false)]
+ public void CoreCLR_Interpreter_TrimmableStatic (ApplePlatform platform, string runtimeIdentifiers, bool isTrimmed)
+ {
+ var dict = new Dictionary () {
+ { "UseMonoRuntime", "false" },
+ { "PublishReadyToRun", "false" },
+ { "NoDSymUtil", "false" }, // off by default for macOS, but we want to test it, so enable it
+ { "Registrar", "trimmable-static" },
+ };
+ Run (platform, runtimeIdentifiers, "Release", $"{platform}-CoreCLR-Interpreter-TrimmableStatic", isTrimmed, dict);
+ }
}
static class StringExtensions {
diff --git a/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-TrimmableStatic-preservedapis.txt b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-TrimmableStatic-preservedapis.txt
new file mode 100644
index 000000000000..ffb9a0ebf7ff
--- /dev/null
+++ b/tests/dotnet/UnitTests/expected/MacCatalyst-MonoVM-TrimmableStatic-preservedapis.txt
@@ -0,0 +1,43235 @@
+_Microsoft.MacCatalyst.TypeMap.dll:
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleMap_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleMap_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleMap_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleMap_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleMap_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleMapRendererWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleMapRendererWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleMapRendererWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTable_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTable_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTable_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTranslationResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTranslationResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTranslationResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTranslationResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTranslationResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTranslator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTranslator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTranslator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTranslator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXBrailleTranslator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCategoricalDataAxisDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCategoricalDataAxisDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCategoricalDataAxisDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCategoricalDataAxisDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCategoricalDataAxisDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXChartDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXChartDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXChartDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXChartDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXChartDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXChartWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXChartWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXChartWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCustomContent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCustomContent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCustomContent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCustomContent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCustomContent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCustomContentProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCustomContentProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXCustomContentProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataAxisDescriptorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataAxisDescriptorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataAxisDescriptorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataPoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataPoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataPoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataPoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataPoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataPointValue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataPointValue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataPointValue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataPointValue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataPointValue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataSeriesDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataSeriesDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataSeriesDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataSeriesDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXDataSeriesDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXLiveAudioGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXLiveAudioGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXLiveAudioGraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXLiveAudioGraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXLiveAudioGraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpression_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpression_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpression_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpression_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpression_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionFenced_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionFenced_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionFenced_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionFenced_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionFenced_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionFraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionFraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionFraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionFraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionFraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionIdentifier_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionIdentifier_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionIdentifier_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionIdentifier_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionIdentifier_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionMultiscript_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionMultiscript_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionMultiscript_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionMultiscript_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionMultiscript_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionNumber_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionNumber_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionNumber_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionNumber_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionNumber_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionOperator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionOperator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionOperator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionOperator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionOperator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionRoot_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionRoot_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionRoot_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionRoot_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionRoot_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionRow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionRow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionRow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionRow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionRow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionSubSuperscript_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionSubSuperscript_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionSubSuperscript_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionSubSuperscript_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionSubSuperscript_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTable_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTable_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTable_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTableCell_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTableCell_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTableCell_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTableCell_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTableCell_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTableRow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTableRow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTableRow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTableRow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionTableRow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionText_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionText_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionText_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionText_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionText_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionUnderOver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionUnderOver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionUnderOver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionUnderOver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXMathExpressionUnderOver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXNumericDataAxisDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXNumericDataAxisDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXNumericDataAxisDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXNumericDataAxisDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXNumericDataAxisDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.AXRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXBrailleMapRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXBrailleMapRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXBrailleMapRenderer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXChart_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXChart_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXChart_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXCustomContentProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXCustomContentProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXCustomContentProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXDataAxisDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXDataAxisDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXDataAxisDescriptor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXMathExpressionProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXMathExpressionProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accessibility.IAXMathExpressionProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccount_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccount_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccount_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccount_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccount_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountCredential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountCredential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountCredential_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountCredential_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountCredential_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Accounts.ACAccountType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABAddressBook_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABAddressBook_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABAddressBook_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABGroup_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABMultiValue`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABMultiValue`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABMultiValue`1_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABMutableMultiValue`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABMutableMultiValue`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABMutableMultiValue`1_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABPerson_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABPerson_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABPerson_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABRecord_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AddressBook.ABSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AdServices.AAAttribution_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AdServices.AAAttribution_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AdServices.AAAttribution_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AdServices.AAAttribution_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AdServices.AAAttribution_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AdSupport.ASIdentifierManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AdSupport.ASIdentifierManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AdSupport.ASIdentifierManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AdSupport.ASIdentifierManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AdSupport.ASIdentifierManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppClip.APActivationPayload_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppClip.APActivationPayload_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppClip.APActivationPayload_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppClip.APActivationPayload_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppClip.APActivationPayload_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit__NSToolbar._NSToolbarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit__NSToolbar._NSToolbarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit__NSToolbar._NSToolbarDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit__NSToolbar._NSToolbarDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit__NSToolbar._NSToolbarDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit__NSTouchBar._NSTouchBarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit__NSTouchBar._NSTouchBarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit__NSTouchBar._NSTouchBarDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit__NSTouchBar._NSTouchBarDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit__NSTouchBar._NSTouchBarDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.ActionDispatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSAccessibilityColor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSAccessibilityColor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSAccessibilityColor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSAlignmentFeedbackToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSAlignmentFeedbackToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSAlignmentFeedbackToken_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSToolbarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSToolbarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSToolbarDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.INSTouchBarProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSAccessibilityColorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSAccessibilityColorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSAccessibilityColorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSAlignmentFeedbackToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSAlignmentFeedbackToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSAlignmentFeedbackToken_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSAlignmentFeedbackToken_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSAlignmentFeedbackToken_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSAlignmentFeedbackTokenWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSAlignmentFeedbackTokenWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSAlignmentFeedbackTokenWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSButtonTouchBarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSButtonTouchBarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSButtonTouchBarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSButtonTouchBarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSButtonTouchBarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSColorPickerTouchBarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSColorPickerTouchBarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSColorPickerTouchBarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSColorPickerTouchBarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSColorPickerTouchBarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSCursor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSCursor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSCursor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSCursor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSCursor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSGroupTouchBarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSGroupTouchBarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSGroupTouchBarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSGroupTouchBarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSGroupTouchBarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSImage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSImage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSImage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSImage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSImage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSItemBadge_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSItemBadge_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSItemBadge_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSItemBadge_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSItemBadge_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSMenuToolbarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSMenuToolbarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSMenuToolbarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSMenuToolbarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSMenuToolbarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSPickerTouchBarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSPickerTouchBarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSPickerTouchBarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSPickerTouchBarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSPickerTouchBarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSPopoverTouchBarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSPopoverTouchBarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSPopoverTouchBarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSPopoverTouchBarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSPopoverTouchBarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSharingServicePickerToolbarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSharingServicePickerToolbarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSharingServicePickerToolbarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSharingServicePickerToolbarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSharingServicePickerToolbarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSharingServicePickerTouchBarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSharingServicePickerTouchBarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSharingServicePickerTouchBarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSharingServicePickerTouchBarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSharingServicePickerTouchBarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderAccessory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderAccessory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderAccessory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderAccessory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderAccessory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderAccessoryBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderAccessoryBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderAccessoryBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderAccessoryBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderAccessoryBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderTouchBarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderTouchBarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderTouchBarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderTouchBarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSSliderTouchBarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSStepperTouchBarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSStepperTouchBarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSStepperTouchBarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSStepperTouchBarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSStepperTouchBarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarItemGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarItemGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarItemGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarItemGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSToolbarItemGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppKit.NSTouchBarProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AppTrackingTransparency.ATTrackingManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AppTrackingTransparency.ATTrackingManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AppTrackingTransparency.ATTrackingManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AppTrackingTransparency.ATTrackingManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AppTrackingTransparency.ATTrackingManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.AudioBuffers_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.AudioBuffers_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.AudioBuffers_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.AudioConverter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.AudioConverter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.AudioConverter_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.AudioFile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.AudioFile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.AudioFile_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.MusicPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.MusicPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.MusicPlayer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.MusicSequence_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.MusicSequence_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioToolbox.MusicSequence_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnit_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnit_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnit_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitBus_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitBus_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitBus_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitBus_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitBus_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitBusArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitBusArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitBusArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitBusArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitBusArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitFactoryWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitFactoryWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitFactoryWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitPreset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitPreset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitPreset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitPreset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUAudioUnitPreset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AudioComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AudioComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AudioComponent_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AudioUnit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AudioUnit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AudioUnit_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUGraph_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterTree_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterTree_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterTree_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterTree_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AUParameterTree_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AURenderEventEnumerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AURenderEventEnumerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.AURenderEventEnumerator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.IAUAudioUnitFactory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.IAUAudioUnitFactory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AudioUnit.IAUAudioUnitFactory_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices__ASAuthorizationAppleIdButton.ASAuthorizationAppleIdButtonAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices__ASAuthorizationAppleIdButton.ASAuthorizationAppleIdButtonAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices__ASAuthorizationAppleIdButton.ASAuthorizationAppleIdButtonAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices__ASAuthorizationAppleIdButton.ASAuthorizationAppleIdButtonAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices__ASAuthorizationAppleIdButton.ASAuthorizationAppleIdButtonAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationControllerPresentationContextProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationControllerPresentationContextProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationControllerPresentationContextProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationExtensionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationExtensionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationExtensionContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationExtensionContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationExtensionContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationReplacePasswordWithSignInWithAppleRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationReplacePasswordWithSignInWithAppleRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationReplacePasswordWithSignInWithAppleRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationReplacePasswordWithSignInWithAppleRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationReplacePasswordWithSignInWithAppleRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationUpgradePasswordToStrongPasswordRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationUpgradePasswordToStrongPasswordRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationUpgradePasswordToStrongPasswordRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationUpgradePasswordToStrongPasswordRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationUpgradePasswordToStrongPasswordRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAccountAuthenticationModificationViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdButton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdButton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdButton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdButton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdButton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdCredential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdCredential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdCredential_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdCredential_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdCredential_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationAppleIdRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationControllerPresentationContextProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationControllerPresentationContextProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationControllerPresentationContextProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationCredentialWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationCredentialWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationCredentialWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationOpenIdRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationOpenIdRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationOpenIdRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationOpenIdRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationOpenIdRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPasswordProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPasswordProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPasswordProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPasswordProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPasswordProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPasswordRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPasswordRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPasswordRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPasswordRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPasswordRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertionRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertionRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertionRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertionRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialAssertionRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPlatformPublicKeyCredentialRegistrationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationRequestHandlerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationRequestHandlerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationRequestHandlerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderExtensionAuthorizationResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialAssertionRequestWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialAssertionRequestWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialAssertionRequestWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialAssertionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialAssertionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialAssertionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialDescriptorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialDescriptorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialDescriptorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobAssertionOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialLargeBlobRegistrationOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInputValues_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInputValues_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInputValues_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInputValues_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionInputValues_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfAssertionOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialPrfRegistrationOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialRegistrationRequestWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialRegistrationRequestWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialRegistrationRequestWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialRegistrationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialRegistrationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationPublicKeyCredentialRegistrationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialAssertionRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSecurityKeyPublicKeyCredentialRegistrationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnCredential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnCredential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnCredential_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnCredential_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnCredential_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationSingleSignOnRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredential_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredential_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredential_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequestWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequestWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequestWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredentialProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredentialProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredentialProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequestWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequestWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequestWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPublicKeyCredentialManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPublicKeyCredentialManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPublicKeyCredentialManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPublicKeyCredentialManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserPublicKeyCredentialManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequestWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequestWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequestWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequestWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequestWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequestWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityStoreState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityStoreState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityStoreState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityStoreState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityStoreState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialIdentityWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialProviderExtensionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialProviderExtensionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialProviderExtensionContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialProviderExtensionContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialProviderExtensionContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialProviderViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialProviderViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialProviderViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialProviderViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialProviderViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialRequestWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialRequestWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialRequestWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialServiceIdentifier_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialServiceIdentifier_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialServiceIdentifier_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialServiceIdentifier_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASCredentialServiceIdentifier_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASGeneratedPassword_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASGeneratedPassword_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASGeneratedPassword_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASGeneratedPassword_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASGeneratedPassword_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASGeneratePasswordsRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASGeneratePasswordsRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASGeneratePasswordsRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASGeneratePasswordsRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASGeneratePasswordsRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredential_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredential_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredential_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredentialIdentity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredentialIdentity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredentialIdentity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredentialIdentity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredentialIdentity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredentialRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredentialRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredentialRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredentialRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASOneTimeCodeCredentialRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredential_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredential_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredential_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredentialExtensionInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredentialExtensionInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredentialExtensionInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredentialExtensionInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredentialExtensionInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredentialExtensionOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredentialExtensionOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredentialExtensionOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredentialExtensionOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyAssertionCredentialExtensionOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialIdentity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialIdentity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialIdentity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialIdentity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialIdentity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialRequestParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialRequestParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialRequestParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialRequestParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyCredentialRequestParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredential_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredential_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredential_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasskeyRegistrationCredentialExtensionOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredential_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredential_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredential_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredentialIdentity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredentialIdentity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredentialIdentity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredentialIdentity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredentialIdentity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredentialRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredentialRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredentialRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredentialRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPasswordCredentialRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPublicKeyCredentialClientData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPublicKeyCredentialClientData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPublicKeyCredentialClientData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPublicKeyCredentialClientData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPublicKeyCredentialClientData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPublicKeyCredentialWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPublicKeyCredentialWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASPublicKeyCredentialWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASSavePasswordRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASSavePasswordRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASSavePasswordRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASSavePasswordRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASSavePasswordRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASSettingsHelper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASSettingsHelper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASSettingsHelper_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASSettingsHelper_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASSettingsHelper_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationPresentationContextProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationPresentationContextProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationPresentationContextProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionCallback_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionCallback_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionCallback_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionCallback_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionCallback_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequestDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequestDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequestDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequestDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequestDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequestDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequestDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.ASWebAuthenticationSessionRequestDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAccountAuthenticationModificationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAccountAuthenticationModificationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAccountAuthenticationModificationControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAccountAuthenticationModificationControllerPresentationContextProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAccountAuthenticationModificationControllerPresentationContextProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAccountAuthenticationModificationControllerPresentationContextProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationControllerPresentationContextProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationControllerPresentationContextProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationControllerPresentationContextProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationCredential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationCredential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationCredential_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationProviderExtensionAuthorizationRequestHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationProviderExtensionAuthorizationRequestHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationProviderExtensionAuthorizationRequestHandler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialAssertion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialAssertion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialAssertion_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialAssertionRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialAssertionRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialAssertionRequest_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialDescriptor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialRegistration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialRegistration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialRegistration_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialRegistrationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialRegistrationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationPublicKeyCredentialRegistrationRequest_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialAssertionRequest_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserPlatformPublicKeyCredentialRegistrationRequest_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialAssertionRequest_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASAuthorizationWebBrowserSecurityKeyPublicKeyCredentialRegistrationRequest_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASCredentialIdentity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASCredentialIdentity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASCredentialIdentity_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASCredentialRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASCredentialRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASCredentialRequest_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASPublicKeyCredential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASPublicKeyCredential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASPublicKeyCredential_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASWebAuthenticationPresentationContextProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASWebAuthenticationPresentationContextProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASWebAuthenticationPresentationContextProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASWebAuthenticationSessionRequestDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASWebAuthenticationSessionRequestDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AuthenticationServices.IASWebAuthenticationSessionRequestDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentApplication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentApplication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentApplication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentApplication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentApplication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentParticipantConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentParticipantConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentParticipantConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentParticipantConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentParticipantConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.AEAssessmentSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.IAEAssessmentSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.IAEAssessmentSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AutomaticAssessmentConfiguration.IAEAssessmentSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation__AVCaptureFileOutput.recordingProxy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation__AVCaptureFileOutput.recordingProxy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation__AVCaptureFileOutput.recordingProxy_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation__AVCaptureFileOutput.recordingProxy_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation__AVCaptureFileOutput.recordingProxy_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation__AVSpeechSynthesizer._AVSpeechSynthesizerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation__AVSpeechSynthesizer._AVSpeechSynthesizerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation__AVSpeechSynthesizer._AVSpeechSynthesizerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation__AVSpeechSynthesizer._AVSpeechSynthesizerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation__AVSpeechSynthesizer._AVSpeechSynthesizerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAggregateAssetDownloadTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAggregateAssetDownloadTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAggregateAssetDownloadTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAggregateAssetDownloadTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAggregateAssetDownloadTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetCache_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetCache_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetCache_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetCache_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetCache_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadContentConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadContentConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadContentConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadContentConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadContentConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadStorageManagementPolicy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadStorageManagementPolicy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadStorageManagementPolicy_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadStorageManagementPolicy_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadStorageManagementPolicy_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadStorageManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadStorageManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadStorageManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadStorageManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadStorageManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadUrlSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadUrlSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadUrlSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadUrlSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetDownloadUrlSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetExportSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetExportSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetExportSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetExportSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetExportSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetImageGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetImageGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetImageGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetImageGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetImageGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetPlaybackAssistant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetPlaybackAssistant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetPlaybackAssistant_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetPlaybackAssistant_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetPlaybackAssistant_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReader_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReader_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReader_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReader_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReader_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderAudioMixOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderAudioMixOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderAudioMixOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderAudioMixOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderAudioMixOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderCaptionValidationHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderCaptionValidationHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderCaptionValidationHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutputCaptionAdaptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutputCaptionAdaptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutputCaptionAdaptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutputCaptionAdaptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutputCaptionAdaptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutputMetadataAdaptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutputMetadataAdaptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutputMetadataAdaptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutputMetadataAdaptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderOutputMetadataAdaptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderSampleReferenceOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderSampleReferenceOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderSampleReferenceOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderSampleReferenceOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderSampleReferenceOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderTrackOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderTrackOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderTrackOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderTrackOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderTrackOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderVideoCompositionOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderVideoCompositionOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderVideoCompositionOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderVideoCompositionOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetReaderVideoCompositionOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoader_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoader_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoader_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoader_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoader_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoaderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoaderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoaderDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoaderDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoaderDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoaderDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoaderDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoaderDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingContentInformationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingContentInformationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingContentInformationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingContentInformationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingContentInformationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingDataRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingDataRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingDataRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingDataRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingDataRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingRequestor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingRequestor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingRequestor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingRequestor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceLoadingRequestor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceRenewalRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceRenewalRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceRenewalRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceRenewalRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetResourceRenewalRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentReport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentReport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentReport_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentReport_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentReport_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentReportSampleInformation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentReportSampleInformation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentReportSampleInformation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentReportSampleInformation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentReportSampleInformation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentTrackReport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentTrackReport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentTrackReport_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentTrackReport_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetSegmentTrackReport_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrackGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrackGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrackGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrackGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrackGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrackSegment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrackSegment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrackSegment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrackSegment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetTrackSegment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariant_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariant_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariant_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantAudioAttributes_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantAudioAttributes_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantAudioAttributes_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantAudioAttributes_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantAudioAttributes_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantAudioRenditionSpecificAttributes_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantQualifier_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantQualifier_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantQualifier_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantQualifier_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantQualifier_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantVideoAttributes_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantVideoAttributes_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantVideoAttributes_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantVideoAttributes_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantVideoAttributes_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantVideoLayoutAttributes_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantVideoLayoutAttributes_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantVideoLayoutAttributes_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantVideoLayoutAttributes_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetVariantVideoLayoutAttributes_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputCaptionAdaptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputCaptionAdaptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputCaptionAdaptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputCaptionAdaptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputCaptionAdaptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputMetadataAdaptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputMetadataAdaptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputMetadataAdaptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputMetadataAdaptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputMetadataAdaptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputPassDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputPassDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputPassDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputPassDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputPassDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputPixelBufferAdaptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputPixelBufferAdaptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputPixelBufferAdaptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputPixelBufferAdaptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputPixelBufferAdaptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAssetWriterInputTaggedPixelBufferGroupAdaptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousCIImageFilteringRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousCIImageFilteringRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousCIImageFilteringRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousCIImageFilteringRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousCIImageFilteringRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousKeyValueLoading_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousKeyValueLoading_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousKeyValueLoading_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousKeyValueLoading_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousKeyValueLoading_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousKeyValueLoadingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousKeyValueLoadingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousKeyValueLoadingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousVideoCompositionRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousVideoCompositionRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousVideoCompositionRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousVideoCompositionRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAsynchronousVideoCompositionRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudio3DMixing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudio3DMixing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudio3DMixing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudio3DMixing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudio3DMixing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudio3DMixingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudio3DMixingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudio3DMixingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioApplication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioApplication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioApplication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioApplication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioApplication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioBuffer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioBuffer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioBuffer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioChannelLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioChannelLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioChannelLayout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioChannelLayout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioChannelLayout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioCompressedBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioCompressedBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioCompressedBuffer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioCompressedBuffer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioCompressedBuffer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioConnectionPoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioConnectionPoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioConnectionPoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioConnectionPoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioConnectionPoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioConverter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioConverter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioConverter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioConverter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioConverter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEngine_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEngine_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEngine_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEngine_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEngine_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentDistanceAttenuationParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentDistanceAttenuationParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentDistanceAttenuationParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentDistanceAttenuationParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentDistanceAttenuationParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentReverbParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentReverbParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentReverbParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentReverbParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioEnvironmentReverbParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioFile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioFile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioFile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioFile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioFile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioFormat_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioFormat_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioFormat_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioFormat_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioFormat_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioInputNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioInputNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioInputNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioInputNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioInputNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioIONode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioIONode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioIONode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioIONode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioIONode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMix_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMix_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMix_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMix_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMix_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixerNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixerNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixerNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixerNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixerNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixingDestination_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixingDestination_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixingDestination_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixingDestination_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixingDestination_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixInputParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixInputParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixInputParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixInputParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioMixInputParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioOutputNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioOutputNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioOutputNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioOutputNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioOutputNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPcmBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPcmBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPcmBuffer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPcmBuffer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPcmBuffer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioPlayerNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorderDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorderDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorderDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorderDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorderDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioRecorderDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSequencer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSequencer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSequencer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSequencer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSequencer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionCapability_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionCapability_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionCapability_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionCapability_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionCapability_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionChannelDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionChannelDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionChannelDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionChannelDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionChannelDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDataSourceDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDataSourceDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDataSourceDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDataSourceDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDataSourceDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionPortDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionPortDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionPortDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionPortDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionPortDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionPortExtensionBluetoothMicrophone_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionPortExtensionBluetoothMicrophone_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionPortExtensionBluetoothMicrophone_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionPortExtensionBluetoothMicrophone_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionPortExtensionBluetoothMicrophone_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionRouteDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionRouteDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionRouteDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionRouteDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSessionRouteDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSinkNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSinkNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSinkNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSinkNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSinkNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSourceNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSourceNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSourceNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSourceNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioSourceNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioStereoMixing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioStereoMixing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioStereoMixing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioStereoMixing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioStereoMixing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioStereoMixingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioStereoMixingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioStereoMixingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioTime_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioTime_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioTime_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioTime_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioTime_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnit_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnit_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnit_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitComponent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitComponent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitComponent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitComponentManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitComponentManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitComponentManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitComponentManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitComponentManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitDelay_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitDelay_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitDelay_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitDelay_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitDelay_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitDistortion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitDistortion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitDistortion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitDistortion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitDistortion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEQ_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEQ_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEQ_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEQ_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEQ_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEQFilterParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEQFilterParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEQFilterParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEQFilterParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitEQFilterParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitMidiInstrument_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitMidiInstrument_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitMidiInstrument_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitMidiInstrument_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitMidiInstrument_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitReverb_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitReverb_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitReverb_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitReverb_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitReverb_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitSampler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitSampler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitSampler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitSampler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitSampler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitTimeEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitTimeEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitTimeEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitTimeEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitTimeEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitTimePitch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitTimePitch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitTimePitch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitTimePitch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitTimePitch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitVarispeed_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitVarispeed_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitVarispeed_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitVarispeed_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAudioUnitVarispeed_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAUPresetEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAUPresetEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAUPresetEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAUPresetEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVAUPresetEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCameraCalibrationData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCameraCalibrationData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCameraCalibrationData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCameraCalibrationData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCameraCalibrationData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaption_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaption_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaption_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaption_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaption_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionAdjustment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionAdjustment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionAdjustment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionAdjustment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionAdjustment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionTimeRangeAdjustment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionTimeRangeAdjustment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionTimeRangeAdjustment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionTimeRangeAdjustment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionTimeRangeAdjustment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionValidator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionValidator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionValidator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionValidator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionValidator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionWarning_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionWarning_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionWarning_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionWarning_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionConversionWarning_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionFormatConformer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionFormatConformer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionFormatConformer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionFormatConformer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionFormatConformer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionGrouper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionGrouper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionGrouper_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionGrouper_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionGrouper_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRegion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRegion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRegion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRegion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRegion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRendererScene_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRendererScene_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRendererScene_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRendererScene_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRendererScene_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRuby_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRuby_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRuby_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRuby_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptionRuby_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioChannel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioChannel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioChannel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioChannel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioChannel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutputSampleBufferDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutputSampleBufferDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutputSampleBufferDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutputSampleBufferDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutputSampleBufferDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutputSampleBufferDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutputSampleBufferDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAudioDataOutputSampleBufferDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAutoExposureBracketedStillImageSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAutoExposureBracketedStillImageSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAutoExposureBracketedStillImageSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAutoExposureBracketedStillImageSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureAutoExposureBracketedStillImageSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureBracketedStillImageSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureBracketedStillImageSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureBracketedStillImageSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureBracketedStillImageSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureBracketedStillImageSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureConnection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureConnection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureConnection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureConnection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureConnection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDataOutputSynchronizerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutputDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutputDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutputDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutputDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutputDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutputDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutputDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDepthDataOutputDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeskViewApplication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeskViewApplication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeskViewApplication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeskViewApplication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeskViewApplication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeskViewApplicationLaunchConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeskViewApplicationLaunchConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeskViewApplicationLaunchConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeskViewApplicationLaunchConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeskViewApplicationLaunchConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceDiscoverySession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceDiscoverySession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceDiscoverySession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceDiscoverySession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceDiscoverySession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceFormat_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceFormat_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceFormat_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceFormat_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceFormat_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceRotationCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceRotationCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceRotationCoordinator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceRotationCoordinator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureDeviceRotationCoordinator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureExternalDisplayConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureExternalDisplayConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureExternalDisplayConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureExternalDisplayConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureExternalDisplayConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureExternalDisplayConfigurator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureExternalDisplayConfigurator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureExternalDisplayConfigurator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureExternalDisplayConfigurator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureExternalDisplayConfigurator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutputRecordingDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutputRecordingDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutputRecordingDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutputRecordingDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutputRecordingDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutputRecordingDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutputRecordingDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureFileOutputRecordingDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureIndexPicker_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureIndexPicker_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureIndexPicker_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureIndexPicker_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureIndexPicker_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureInputPort_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureInputPort_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureInputPort_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureInputPort_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureInputPort_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureManualExposureBracketedStillImageSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureManualExposureBracketedStillImageSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureManualExposureBracketedStillImageSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureManualExposureBracketedStillImageSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureManualExposureBracketedStillImageSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutputObjectsDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutputObjectsDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutputObjectsDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutputObjectsDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutputObjectsDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutputObjectsDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutputObjectsDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMetadataOutputObjectsDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMovieFileOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMovieFileOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMovieFileOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMovieFileOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMovieFileOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMultiCamSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMultiCamSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMultiCamSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMultiCamSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureMultiCamSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhoto_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhoto_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhoto_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhoto_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhoto_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoBracketSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoBracketSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoBracketSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoBracketSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoBracketSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoCaptureDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoCaptureDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoCaptureDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoCaptureDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoCaptureDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoCaptureDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoCaptureDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoCaptureDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoFileDataRepresentationCustomizerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinatorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinatorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinatorDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinatorDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinatorDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinatorDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinatorDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoOutputReadinessCoordinatorDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCapturePhotoSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureReactionEffectState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureReactionEffectState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureReactionEffectState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureReactionEffectState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureReactionEffectState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureResolvedPhotoSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureResolvedPhotoSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureResolvedPhotoSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureResolvedPhotoSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureResolvedPhotoSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionControlsDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionControlsDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionControlsDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionControlsDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionControlsDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionControlsDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionControlsDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionControlsDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionDeferredStartDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionDeferredStartDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionDeferredStartDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionDeferredStartDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionDeferredStartDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionDeferredStartDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionDeferredStartDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSessionDeferredStartDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSlider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSlider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSlider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSlider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSlider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureStillImageOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureStillImageOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureStillImageOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureStillImageOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureStillImageOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedDataCollection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedDataCollection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedDataCollection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedDataCollection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedDataCollection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedDepthData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedDepthData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedDepthData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedDepthData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedDepthData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedMetadataObjectData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedMetadataObjectData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedMetadataObjectData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedMetadataObjectData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedMetadataObjectData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedSampleBufferData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedSampleBufferData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedSampleBufferData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedSampleBufferData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSynchronizedSampleBufferData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemExposureBiasSlider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemExposureBiasSlider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemExposureBiasSlider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemExposureBiasSlider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemExposureBiasSlider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemPressureState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemPressureState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemPressureState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemPressureState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemPressureState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemZoomSlider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemZoomSlider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemZoomSlider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemZoomSlider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureSystemZoomSlider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGeneratorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGeneratorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGeneratorDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGeneratorDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGeneratorDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGeneratorDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGeneratorDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeGeneratorDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureTimecodeSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoDataOutputSampleBufferDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoPreviewLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoPreviewLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoPreviewLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoPreviewLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCaptureVideoPreviewLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVComposition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVComposition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVComposition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVComposition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVComposition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrackFormatDescriptionReplacement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrackFormatDescriptionReplacement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrackFormatDescriptionReplacement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrackFormatDescriptionReplacement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrackFormatDescriptionReplacement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrackSegment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrackSegment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrackSegment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrackSegment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCompositionTrackSegment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKey_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKey_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKey_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKey_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKey_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyRecipientWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyRecipientWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyRecipientWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeyResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySpecifier_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySpecifier_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySpecifier_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySpecifier_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVContentKeySpecifier_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCoordinatedPlaybackParticipant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCoordinatedPlaybackParticipant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCoordinatedPlaybackParticipant_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCoordinatedPlaybackParticipant_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCoordinatedPlaybackParticipant_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCoordinatedPlaybackSuspension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCoordinatedPlaybackSuspension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCoordinatedPlaybackSuspension_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCoordinatedPlaybackSuspension_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCoordinatedPlaybackSuspension_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCustomMediaSelectionScheme_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCustomMediaSelectionScheme_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCustomMediaSelectionScheme_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCustomMediaSelectionScheme_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVCustomMediaSelectionScheme_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDateRangeMetadataGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDateRangeMetadataGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDateRangeMetadataGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDateRangeMetadataGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDateRangeMetadataGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorBufferingCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorBufferingCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorBufferingCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorBufferingCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorBufferingCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPauseCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPauseCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPauseCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPauseCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPauseCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPlaybackControlCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPlaybackControlCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPlaybackControlCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPlaybackControlCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPlaybackControlCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPlayCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPlayCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPlayCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPlayCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorPlayCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDelegatingPlaybackCoordinatorSeekCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDepthData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDepthData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDepthData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDepthData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVDepthData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExposureBiasRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExposureBiasRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExposureBiasRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExposureBiasRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExposureBiasRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExtendedNoteOnEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExtendedNoteOnEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExtendedNoteOnEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExtendedNoteOnEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExtendedNoteOnEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExtendedTempoEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExtendedTempoEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExtendedTempoEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExtendedTempoEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExtendedTempoEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalStorageDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalStorageDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalStorageDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalStorageDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalStorageDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalStorageDeviceDiscoverySession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalStorageDeviceDiscoverySession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalStorageDeviceDiscoverySession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalStorageDeviceDiscoverySession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalStorageDeviceDiscoverySession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDiscoverySession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDiscoverySession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDiscoverySession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDiscoverySession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVExternalSyncDeviceDiscoverySession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAssetMinder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAssetMinder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAssetMinder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAssetMinder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAssetMinder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAssetTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAssetTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAssetTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAssetTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedAssetTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovie_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovie_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovie_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovie_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovie_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovieMinder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovieMinder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovieMinder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovieMinder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovieMinder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovieTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovieTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovieTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovieTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentedMovieTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentMindingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentMindingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFragmentMindingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFrameRateRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFrameRateRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFrameRateRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFrameRateRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVFrameRateRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaDataStorage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaDataStorage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaDataStorage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaDataStorage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaDataStorage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaPresentationSelector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaPresentationSelector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaPresentationSelector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaPresentationSelector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaPresentationSelector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaPresentationSetting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaPresentationSetting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaPresentationSetting_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaPresentationSetting_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaPresentationSetting_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelectionGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelectionGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelectionGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelectionGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelectionGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelectionOption_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelectionOption_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelectionOption_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelectionOption_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMediaSelectionOption_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataBodyObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataBodyObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataBodyObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataBodyObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataBodyObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataCatBodyObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataCatBodyObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataCatBodyObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataCatBodyObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataCatBodyObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataCatHeadObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataCatHeadObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataCatHeadObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataCatHeadObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataCatHeadObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataDogBodyObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataDogBodyObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataDogBodyObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataDogBodyObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataDogBodyObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataDogHeadObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataDogHeadObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataDogHeadObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataDogHeadObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataDogHeadObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataFaceObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataFaceObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataFaceObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataFaceObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataFaceObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataHumanBodyObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataHumanBodyObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataHumanBodyObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataHumanBodyObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataHumanBodyObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataHumanFullBodyObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataHumanFullBodyObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataHumanFullBodyObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataHumanFullBodyObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataHumanFullBodyObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItemFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItemFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItemFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItemFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItemFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItemValueRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItemValueRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItemValueRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItemValueRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataItemValueRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataMachineReadableCodeObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataMachineReadableCodeObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataMachineReadableCodeObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataMachineReadableCodeObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataMachineReadableCodeObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataSalientObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataSalientObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataSalientObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataSalientObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetadataSalientObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricContentKeyRequestEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricContentKeyRequestEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricContentKeyRequestEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricContentKeyRequestEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricContentKeyRequestEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricDownloadSummaryEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricDownloadSummaryEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricDownloadSummaryEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricDownloadSummaryEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricDownloadSummaryEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricErrorEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricErrorEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricErrorEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricErrorEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricErrorEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEventStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEventStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEventStream_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEventStream_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEventStream_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEventStreamPublisherWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEventStreamPublisherWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEventStreamPublisherWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEventStreamSubscriberWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEventStreamSubscriberWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricEventStreamSubscriberWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricHlsMediaSegmentRequestEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricHlsMediaSegmentRequestEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricHlsMediaSegmentRequestEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricHlsMediaSegmentRequestEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricHlsMediaSegmentRequestEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricHlsPlaylistRequestEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricHlsPlaylistRequestEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricHlsPlaylistRequestEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricHlsPlaylistRequestEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricHlsPlaylistRequestEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricMediaRendition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricMediaRendition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricMediaRendition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricMediaRendition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricMediaRendition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricMediaResourceRequestEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricMediaResourceRequestEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricMediaResourceRequestEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricMediaResourceRequestEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricMediaResourceRequestEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemInitialLikelyToKeepUpEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemInitialLikelyToKeepUpEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemInitialLikelyToKeepUpEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemInitialLikelyToKeepUpEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemInitialLikelyToKeepUpEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemLikelyToKeepUpEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemLikelyToKeepUpEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemLikelyToKeepUpEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemLikelyToKeepUpEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemLikelyToKeepUpEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemPlaybackSummaryEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemRateChangeEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemRateChangeEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemRateChangeEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemRateChangeEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemRateChangeEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemSeekDidCompleteEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemSeekDidCompleteEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemSeekDidCompleteEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemSeekDidCompleteEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemSeekDidCompleteEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemSeekEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemSeekEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemSeekEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemSeekEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemSeekEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemStallEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemStallEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemStallEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemStallEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemStallEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemVariantSwitchEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemVariantSwitchEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemVariantSwitchEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemVariantSwitchEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemVariantSwitchEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemVariantSwitchStartEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemVariantSwitchStartEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemVariantSwitchStartEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemVariantSwitchStartEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMetricPlayerItemVariantSwitchStartEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiChannelEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiChannelEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiChannelEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiChannelEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiChannelEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiChannelPressureEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiChannelPressureEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiChannelPressureEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiChannelPressureEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiChannelPressureEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiControlChangeEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiControlChangeEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiControlChangeEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiControlChangeEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiControlChangeEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiMetaEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiMetaEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiMetaEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiMetaEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiMetaEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiNoteEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiNoteEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiNoteEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiNoteEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiNoteEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPitchBendEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPitchBendEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPitchBendEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPitchBendEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPitchBendEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPlayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPlayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPlayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPolyPressureEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPolyPressureEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPolyPressureEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPolyPressureEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiPolyPressureEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiProgramChangeEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiProgramChangeEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiProgramChangeEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiProgramChangeEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiProgramChangeEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiSysexEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiSysexEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiSysexEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiSysexEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMidiSysexEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMovie_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMovie_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMovie_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMovie_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMovie_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMovieTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMovieTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMovieTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMovieTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMovieTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicUserEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicUserEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicUserEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicUserEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMusicUserEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAssetDownloadStorageManagementPolicy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAssetDownloadStorageManagementPolicy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAssetDownloadStorageManagementPolicy_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAssetDownloadStorageManagementPolicy_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAssetDownloadStorageManagementPolicy_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAudioMix_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAudioMix_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAudioMix_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAudioMix_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAudioMix_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAudioMixInputParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAudioMixInputParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAudioMixInputParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAudioMixInputParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableAudioMixInputParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCaption_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCaption_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCaption_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCaption_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCaption_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCaptionRegion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCaptionRegion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCaptionRegion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCaptionRegion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCaptionRegion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableComposition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableComposition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableComposition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableComposition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableComposition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCompositionTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCompositionTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCompositionTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCompositionTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableCompositionTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableDateRangeMetadataGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableDateRangeMetadataGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableDateRangeMetadataGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableDateRangeMetadataGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableDateRangeMetadataGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMediaSelection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMediaSelection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMediaSelection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMediaSelection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMediaSelection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMetadataItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMetadataItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMetadataItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMetadataItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMetadataItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMovie_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMovie_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMovie_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMovie_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMovie_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMovieTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMovieTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMovieTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMovieTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableMovieTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableTimedMetadataGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableTimedMetadataGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableTimedMetadataGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableTimedMetadataGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableTimedMetadataGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoComposition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoComposition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoComposition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoComposition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoComposition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoCompositionInstruction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoCompositionInstruction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoCompositionInstruction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoCompositionInstruction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoCompositionInstruction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoCompositionLayerInstruction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoCompositionLayerInstruction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoCompositionLayerInstruction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoCompositionLayerInstruction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVMutableVideoCompositionLayerInstruction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVOutputSettingsAssistant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVOutputSettingsAssistant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVOutputSettingsAssistant_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVOutputSettingsAssistant_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVOutputSettingsAssistant_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVParameterEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVParameterEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVParameterEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVParameterEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVParameterEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPersistableContentKeyRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPersistableContentKeyRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPersistableContentKeyRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPersistableContentKeyRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPersistableContentKeyRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinationMedium_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinationMedium_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinationMedium_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinationMedium_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinationMedium_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlaybackCoordinatorPlaybackControlDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEventController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEventController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEventController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEventController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEventController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEventMonitor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEventMonitor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEventMonitor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEventMonitor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerInterstitialEventMonitor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemAccessLog_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemAccessLog_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemAccessLog_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemAccessLog_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemAccessLog_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemAccessLogEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemAccessLogEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemAccessLogEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemAccessLogEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemAccessLogEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemErrorLog_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemErrorLog_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemErrorLog_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemErrorLog_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemErrorLog_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemErrorLogEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemErrorLogEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemErrorLogEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemErrorLogEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemErrorLogEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimeline_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimeline_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimeline_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimeline_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimeline_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimelineObserverWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimelineObserverWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimelineObserverWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemIntegratedTimelineSnapshot_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutputPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutputPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutputPushDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutputPushDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutputPushDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutputPushDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutputPushDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemLegibleOutputPushDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMediaDataCollector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMediaDataCollector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMediaDataCollector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMediaDataCollector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMediaDataCollector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollectorPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollectorPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollectorPushDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollectorPushDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollectorPushDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollectorPushDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollectorPushDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataCollectorPushDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutputPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutputPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutputPushDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutputPushDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutputPushDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutputPushDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutputPushDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemMetadataOutputPushDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPullDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPullDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPullDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPullDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPullDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPullDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPullDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPullDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPushDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPushDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPushDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPushDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPushDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemOutputPushDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutputPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutputPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutputPushDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutputPushDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutputPushDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutputPushDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutputPushDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemRenderedLegibleOutputPushDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemSegment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemSegment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemSegment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemSegment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemSegment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemVideoOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemVideoOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemVideoOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemVideoOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerItemVideoOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerLooper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerLooper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerLooper_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerLooper_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerLooper_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerMediaSelectionCriteria_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerMediaSelectionCriteria_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerMediaSelectionCriteria_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerMediaSelectionCriteria_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerMediaSelectionCriteria_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinatorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinatorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinatorDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinatorDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinatorDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinatorDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinatorDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerPlaybackCoordinatorDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerVideoOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerVideoOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerVideoOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerVideoOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerVideoOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerVideoOutputConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerVideoOutputConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerVideoOutputConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerVideoOutputConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPlayerVideoOutputConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPortraitEffectsMatte_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPortraitEffectsMatte_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPortraitEffectsMatte_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPortraitEffectsMatte_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVPortraitEffectsMatte_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVQueuedSampleBufferRenderingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVQueuedSampleBufferRenderingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVQueuedSampleBufferRenderingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVQueuePlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVQueuePlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVQueuePlayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVQueuePlayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVQueuePlayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVRenderedCaptionImage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVRenderedCaptionImage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVRenderedCaptionImage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVRenderedCaptionImage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVRenderedCaptionImage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVRouteDetector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVRouteDetector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVRouteDetector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVRouteDetector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVRouteDetector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferAudioRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferAudioRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferAudioRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferAudioRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferAudioRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferDisplayLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferDisplayLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferDisplayLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferDisplayLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferDisplayLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferGeneratorBatch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferGeneratorBatch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferGeneratorBatch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferGeneratorBatch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferGeneratorBatch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferRenderSynchronizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferRenderSynchronizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferRenderSynchronizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferRenderSynchronizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferRenderSynchronizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferVideoRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferVideoRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferVideoRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferVideoRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleBufferVideoRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleCursor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleCursor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleCursor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleCursor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSampleCursor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSemanticSegmentationMatte_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSemanticSegmentationMatte_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSemanticSegmentationMatte_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSemanticSegmentationMatte_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSemanticSegmentationMatte_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpatialVideoConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpatialVideoConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpatialVideoConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpatialVideoConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpatialVideoConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisMarker_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisMarker_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisMarker_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisMarker_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisMarker_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderAudioUnit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderAudioUnit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderAudioUnit_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderAudioUnit_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderAudioUnit_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderVoice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderVoice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderVoice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderVoice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisProviderVoice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisVoice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisVoice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisVoice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisVoice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesisVoice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechSynthesizerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechUtterance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechUtterance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechUtterance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechUtterance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSpeechUtterance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSynchronizedLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSynchronizedLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSynchronizedLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSynchronizedLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVSynchronizedLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVTextStyleRule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVTextStyleRule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVTextStyleRule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVTextStyleRule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVTextStyleRule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVTimedMetadataGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVTimedMetadataGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVTimedMetadataGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVTimedMetadataGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVTimedMetadataGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVUrlAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVUrlAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVUrlAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVUrlAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVUrlAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoComposition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoComposition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoComposition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoComposition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoComposition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionCoreAnimationTool_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionCoreAnimationTool_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionCoreAnimationTool_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionCoreAnimationTool_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionCoreAnimationTool_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionInstruction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionInstruction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionInstruction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionInstruction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionInstruction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionLayerInstruction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionLayerInstruction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionLayerInstruction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionLayerInstruction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionLayerInstruction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionRenderContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionRenderContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionRenderContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionRenderContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionRenderContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionRenderHint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionRenderHint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionRenderHint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionRenderHint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionRenderHint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionValidationHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionValidationHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionValidationHandling_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionValidationHandling_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionValidationHandling_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionValidationHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionValidationHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoCompositionValidationHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoOutputSpecification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoOutputSpecification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoOutputSpecification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoOutputSpecification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoOutputSpecification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoPerformanceMetrics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoPerformanceMetrics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoPerformanceMetrics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoPerformanceMetrics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVVideoPerformanceMetrics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVZoomRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVZoomRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVZoomRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVZoomRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.AVZoomRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetDownloadDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetDownloadDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetDownloadDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetReaderCaptionValidationHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetReaderCaptionValidationHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetReaderCaptionValidationHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetResourceLoaderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetResourceLoaderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetResourceLoaderDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetWriterDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetWriterDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAssetWriterDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAsynchronousKeyValueLoading_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAsynchronousKeyValueLoading_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAsynchronousKeyValueLoading_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudio3DMixing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudio3DMixing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudio3DMixing_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioMixing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioMixing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioMixing_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioPlayerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioPlayerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioPlayerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioRecorderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioRecorderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioRecorderDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioStereoMixing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioStereoMixing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVAudioStereoMixing_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureAudioDataOutputSampleBufferDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureAudioDataOutputSampleBufferDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureAudioDataOutputSampleBufferDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureDataOutputSynchronizerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureDataOutputSynchronizerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureDataOutputSynchronizerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureDepthDataOutputDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureDepthDataOutputDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureDepthDataOutputDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureFileOutputRecordingDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureFileOutputRecordingDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureFileOutputRecordingDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureMetadataOutputObjectsDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureMetadataOutputObjectsDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureMetadataOutputObjectsDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCapturePhotoCaptureDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCapturePhotoCaptureDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCapturePhotoCaptureDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCapturePhotoFileDataRepresentationCustomizer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCapturePhotoOutputReadinessCoordinatorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCapturePhotoOutputReadinessCoordinatorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCapturePhotoOutputReadinessCoordinatorDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureSessionControlsDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureSessionControlsDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureSessionControlsDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureSessionDeferredStartDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureSessionDeferredStartDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureSessionDeferredStartDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureTimecodeGeneratorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureTimecodeGeneratorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureTimecodeGeneratorDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureVideoDataOutputSampleBufferDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureVideoDataOutputSampleBufferDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVCaptureVideoDataOutputSampleBufferDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVContentKeyRecipient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVContentKeyRecipient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVContentKeyRecipient_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVContentKeySessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVContentKeySessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVContentKeySessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVExternalSyncDeviceDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVExternalSyncDeviceDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVExternalSyncDeviceDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVFragmentMinding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVFragmentMinding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVFragmentMinding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVMetricEventStreamPublisher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVMetricEventStreamPublisher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVMetricEventStreamPublisher_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVMetricEventStreamSubscriber_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVMetricEventStreamSubscriber_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVMetricEventStreamSubscriber_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlaybackCoordinatorPlaybackControlDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlaybackCoordinatorPlaybackControlDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlaybackCoordinatorPlaybackControlDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemIntegratedTimelineObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemIntegratedTimelineObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemIntegratedTimelineObserver_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemLegibleOutputPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemLegibleOutputPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemLegibleOutputPushDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemMetadataCollectorPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemMetadataCollectorPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemMetadataCollectorPushDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemMetadataOutputPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemMetadataOutputPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemMetadataOutputPushDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemOutputPullDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemOutputPullDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemOutputPullDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemOutputPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemOutputPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemOutputPushDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemRenderedLegibleOutputPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemRenderedLegibleOutputPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerItemRenderedLegibleOutputPushDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerPlaybackCoordinatorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerPlaybackCoordinatorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVPlayerPlaybackCoordinatorDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVQueuedSampleBufferRendering_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVQueuedSampleBufferRendering_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVQueuedSampleBufferRendering_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVSpeechSynthesizerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVSpeechSynthesizerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVSpeechSynthesizerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVVideoCompositing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVVideoCompositing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVVideoCompositing_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVVideoCompositionValidationHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVVideoCompositionValidationHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.IAVVideoCompositionValidationHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioPlayerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioPlayerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioPlayerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioPlayerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioPlayerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioRecorderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioRecorderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioRecorderDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioRecorderDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioRecorderDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVFoundation.InternalAVAudioSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit__AVRoutePickerView.AVRoutePickerViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit__AVRoutePickerView.AVRoutePickerViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit__AVRoutePickerView.AVRoutePickerViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit__AVRoutePickerView.AVRoutePickerViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit__AVRoutePickerView.AVRoutePickerViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCaptureEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCaptureEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCaptureEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCaptureEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCaptureEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCaptureEventInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCaptureEventInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCaptureEventInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCaptureEventInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCaptureEventInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCustomRoutingControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCustomRoutingControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCustomRoutingControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCustomRoutingControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCustomRoutingControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCustomRoutingControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCustomRoutingControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVCustomRoutingControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVLegibleMediaOptionsMenuControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerContentSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerContentSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerContentSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerContentSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerContentSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureSampleBufferPlaybackDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureSampleBufferPlaybackDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureSampleBufferPlaybackDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureSampleBufferPlaybackDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureVideoCallViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureVideoCallViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureVideoCallViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureVideoCallViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPictureInPictureVideoCallViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlaybackSpeed_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlaybackSpeed_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlaybackSpeed_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlaybackSpeed_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlaybackSpeed_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVPlayerViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.AVRoutePickerViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVCustomRoutingControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVCustomRoutingControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVCustomRoutingControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVLegibleMediaOptionsMenuControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVLegibleMediaOptionsMenuControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVLegibleMediaOptionsMenuControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVPictureInPictureControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVPictureInPictureControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVPictureInPictureControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVPictureInPictureSampleBufferPlaybackDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVPictureInPictureSampleBufferPlaybackDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVPictureInPictureSampleBufferPlaybackDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVPlayerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVPlayerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVPlayerViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVRoutePickerViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVRoutePickerViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVKit.IAVRoutePickerViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomDeviceRoute_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomDeviceRoute_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomDeviceRoute_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomDeviceRoute_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomDeviceRoute_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingActionItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingActionItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingActionItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingActionItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingActionItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingPartialIP_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingPartialIP_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingPartialIP_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingPartialIP_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVCustomRoutingPartialIP_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVRoutingPlaybackArbiter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVRoutingPlaybackArbiter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVRoutingPlaybackArbiter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVRoutingPlaybackArbiter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVRoutingPlaybackArbiter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVRoutingPlaybackParticipantWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVRoutingPlaybackParticipantWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.AVRoutingPlaybackParticipantWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.IAVRoutingPlaybackParticipant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.IAVRoutingPlaybackParticipant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:AVRouting.IAVRoutingPlaybackParticipant_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAppExtensionInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAppExtensionInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAppExtensionInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAppExtensionInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAppExtensionInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPackManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPackManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPackManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPackManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPackManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPackManifest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPackManifest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPackManifest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPackManifest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAAssetPackManifest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownload_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownload_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownload_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownload_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownload_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloaderExtensionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloaderExtensionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloaderExtensionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManagerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManagerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BADownloadManagerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAManagedAssetPackDownloadDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAManagedAssetPackDownloadDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAManagedAssetPackDownloadDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAManagedAssetPackDownloadDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAManagedAssetPackDownloadDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAManagedAssetPackDownloadDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAManagedAssetPackDownloadDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAManagedAssetPackDownloadDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAManagedDownloaderExtensionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAManagedDownloaderExtensionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAManagedDownloaderExtensionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAUrlDownload_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAUrlDownload_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAUrlDownload_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAUrlDownload_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.BAUrlDownload_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBADownloaderExtension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBADownloaderExtension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBADownloaderExtension_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBADownloadManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBADownloadManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBADownloadManagerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBAManagedAssetPackDownloadDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBAManagedAssetPackDownloadDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBAManagedAssetPackDownloadDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBAManagedDownloaderExtension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBAManagedDownloaderExtension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundAssets.IBAManagedDownloaderExtension_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGAppRefreshTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGAppRefreshTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGAppRefreshTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGAppRefreshTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGAppRefreshTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGAppRefreshTaskRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGAppRefreshTaskRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGAppRefreshTaskRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGAppRefreshTaskRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGAppRefreshTaskRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGHealthResearchTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGHealthResearchTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGHealthResearchTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGHealthResearchTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGHealthResearchTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGHealthResearchTaskRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGHealthResearchTaskRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGHealthResearchTaskRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGHealthResearchTaskRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGHealthResearchTaskRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGProcessingTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGProcessingTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGProcessingTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGProcessingTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGProcessingTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGProcessingTaskRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGProcessingTaskRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGProcessingTaskRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGProcessingTaskRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGProcessingTaskRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTaskRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTaskRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTaskRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTaskRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTaskRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTaskScheduler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTaskScheduler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTaskScheduler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTaskScheduler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BackgroundTasks.BGTaskScheduler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat__BCChatButton.BCChatButtonAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat__BCChatButton.BCChatButtonAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat__BCChatButton.BCChatButtonAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat__BCChatButton.BCChatButtonAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat__BCChatButton.BCChatButtonAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat.BCChatAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat.BCChatAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat.BCChatAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat.BCChatAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat.BCChatAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat.BCChatButton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat.BCChatButton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat.BCChatButton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat.BCChatButton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:BusinessChat.BCChatButton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXAnswerCallAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXAnswerCallAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXAnswerCallAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXAnswerCallAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXAnswerCallAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCall_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCall_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCall_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCall_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCall_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContextDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContextDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContextDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContextDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContextDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContextDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContextDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryExtensionContextDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallDirectoryProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserverDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserverDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserverDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserverDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserverDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserverDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserverDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallObserverDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallUpdate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallUpdate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallUpdate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallUpdate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXCallUpdate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXEndCallAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXEndCallAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXEndCallAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXEndCallAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXEndCallAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXHandle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXHandle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXHandle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXHandle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXHandle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXPlayDtmfCallAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXPlayDtmfCallAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXPlayDtmfCallAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXPlayDtmfCallAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXPlayDtmfCallAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXProviderDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetGroupCallAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetGroupCallAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetGroupCallAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetGroupCallAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetGroupCallAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetHeldCallAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetHeldCallAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetHeldCallAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetHeldCallAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetHeldCallAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetMutedCallAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetMutedCallAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetMutedCallAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetMutedCallAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXSetMutedCallAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXStartCallAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXStartCallAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXStartCallAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXStartCallAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXStartCallAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXTransaction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXTransaction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXTransaction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXTransaction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.CXTransaction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.ICXCallDirectoryExtensionContextDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.ICXCallDirectoryExtensionContextDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.ICXCallDirectoryExtensionContextDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.ICXCallObserverDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.ICXCallObserverDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.ICXCallObserverDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.ICXProviderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.ICXProviderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CallKit.ICXProviderDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHost_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHost_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHost_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHTTPAuthentication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHTTPAuthentication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHTTPAuthentication_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHTTPMessage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHTTPMessage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHTTPMessage_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHTTPStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHTTPStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CFNetwork.CFHTTPStream_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNAssetInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNAssetInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNAssetInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNAssetInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNAssetInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNAssetSpatialAudioInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNAssetSpatialAudioInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNAssetSpatialAudioInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNAssetSpatialAudioInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNAssetSpatialAudioInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNBoundsPrediction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNBoundsPrediction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNBoundsPrediction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNBoundsPrediction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNBoundsPrediction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNCompositionInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNCompositionInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNCompositionInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNCompositionInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNCompositionInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNCustomDetectionTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNCustomDetectionTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNCustomDetectionTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNCustomDetectionTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNCustomDetectionTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDecision_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDecision_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDecision_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDecision_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDecision_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDetection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDetection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDetection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDetection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDetection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDetectionTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDetectionTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDetectionTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDetectionTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNDetectionTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNFixedDetectionTrack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNFixedDetectionTrack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNFixedDetectionTrack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNFixedDetectionTrack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNFixedDetectionTrack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNObjectTracker_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNObjectTracker_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNObjectTracker_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNObjectTracker_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNObjectTracker_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSessionAttributes_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSessionAttributes_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSessionAttributes_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSessionAttributes_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSessionAttributes_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSessionFrameAttributes_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSessionFrameAttributes_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSessionFrameAttributes_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSessionFrameAttributes_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNRenderingSessionFrameAttributes_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScript_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScript_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScript_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScript_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScript_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScriptChanges_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScriptChanges_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScriptChanges_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScriptChanges_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScriptChanges_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScriptFrame_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScriptFrame_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScriptFrame_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScriptFrame_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Cinematic.CNScriptFrame_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSActivity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSActivity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSActivity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSActivity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSActivity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSActivityItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSActivityItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSActivityItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSActivityItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSActivityItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSBinaryItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSBinaryItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSBinaryItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSBinaryItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSBinaryItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSContextProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSContextProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSContextProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStoreDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStoreDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStoreDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStoreDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStoreDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStoreDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStoreDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSDataStoreDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSProgressReportingCapability_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSProgressReportingCapability_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSProgressReportingCapability_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSProgressReportingCapability_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSProgressReportingCapability_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSQuantityItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSQuantityItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSQuantityItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSQuantityItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSQuantityItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSScoreItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSScoreItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSScoreItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSScoreItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.CLSScoreItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.ICLSContextProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.ICLSContextProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.ICLSContextProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.ICLSDataStoreDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.ICLSDataStoreDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ClassKit.ICLSDataStoreDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAcceptSharesOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAcceptSharesOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAcceptSharesOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAcceptSharesOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAcceptSharesOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAllowedSharingOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAllowedSharingOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAllowedSharingOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAllowedSharingOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAllowedSharingOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKContainer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKContainer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKContainer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabase_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabase_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabase_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabase_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabase_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseNotification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseNotification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseNotification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseNotification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseNotification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseSubscription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseSubscription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseSubscription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseSubscription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDatabaseSubscription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDiscoverAllUserIdentitiesOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDiscoverAllUserIdentitiesOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDiscoverAllUserIdentitiesOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDiscoverAllUserIdentitiesOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDiscoverAllUserIdentitiesOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDiscoverUserIdentitiesOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDiscoverUserIdentitiesOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDiscoverUserIdentitiesOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDiscoverUserIdentitiesOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKDiscoverUserIdentitiesOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchDatabaseChangesOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchDatabaseChangesOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchDatabaseChangesOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchDatabaseChangesOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchDatabaseChangesOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordChangesOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordChangesOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordChangesOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordChangesOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordChangesOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordsOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordsOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordsOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordsOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordsOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZoneChangesOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZonesOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZonesOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZonesOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZonesOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchRecordZonesOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchShareMetadataOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchShareMetadataOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchShareMetadataOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchShareMetadataOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchShareMetadataOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchShareParticipantsOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchShareParticipantsOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchShareParticipantsOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchShareParticipantsOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchShareParticipantsOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchSubscriptionsOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchSubscriptionsOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchSubscriptionsOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchSubscriptionsOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchSubscriptionsOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchWebAuthTokenOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchWebAuthTokenOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchWebAuthTokenOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchWebAuthTokenOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKFetchWebAuthTokenOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKLocationSortDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKLocationSortDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKLocationSortDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKLocationSortDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKLocationSortDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifyRecordsOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifyRecordsOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifyRecordsOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifyRecordsOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifyRecordsOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifyRecordZonesOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifyRecordZonesOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifyRecordZonesOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifyRecordZonesOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifyRecordZonesOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifySubscriptionsOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifySubscriptionsOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifySubscriptionsOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifySubscriptionsOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKModifySubscriptionsOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotificationID_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotificationID_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotificationID_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotificationID_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotificationID_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotificationInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotificationInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotificationInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotificationInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKNotificationInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperationConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperationConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperationConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperationConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperationConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperationGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperationGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperationGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperationGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKOperationGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryCursor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryCursor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryCursor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryCursor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryCursor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryNotification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryNotification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryNotification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryNotification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryNotification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQueryOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQuerySubscription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQuerySubscription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQuerySubscription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQuerySubscription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKQuerySubscription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordID_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordID_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordID_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordID_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordID_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordValueWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZone_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZone_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZone_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZone_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZone_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneID_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneID_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneID_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneID_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneID_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneNotification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneNotification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneNotification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneNotification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneNotification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneSubscription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneSubscription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneSubscription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneSubscription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKRecordZoneSubscription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKReference_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKReference_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKReference_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKReference_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKReference_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKServerChangeToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKServerChangeToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKServerChangeToken_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKServerChangeToken_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKServerChangeToken_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShare_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShare_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShare_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShare_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShare_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareAccessRequester_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareAccessRequester_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareAccessRequester_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareAccessRequester_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareAccessRequester_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareBlockedIdentity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareBlockedIdentity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareBlockedIdentity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareBlockedIdentity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareBlockedIdentity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareParticipant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareParticipant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareParticipant_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareParticipant_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareParticipant_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareRequestAccessOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareRequestAccessOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareRequestAccessOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareRequestAccessOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKShareRequestAccessOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSubscription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSubscription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSubscription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSubscription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSubscription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngine_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngine_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngine_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngine_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngine_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineAccountChangeEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineAccountChangeEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineAccountChangeEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineAccountChangeEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineAccountChangeEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidFetchChangesEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidFetchChangesEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidFetchChangesEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidFetchChangesEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidFetchChangesEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidFetchRecordZoneChangesEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidFetchRecordZoneChangesEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidFetchRecordZoneChangesEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidFetchRecordZoneChangesEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidFetchRecordZoneChangesEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidSendChangesEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidSendChangesEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidSendChangesEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidSendChangesEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineDidSendChangesEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFailedRecordSave_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFailedRecordSave_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFailedRecordSave_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFailedRecordSave_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFailedRecordSave_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFailedZoneSave_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFailedZoneSave_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFailedZoneSave_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFailedZoneSave_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFailedZoneSave_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesScope_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesScope_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesScope_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesScope_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchChangesScope_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedDatabaseChangesEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedDatabaseChangesEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedDatabaseChangesEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedDatabaseChangesEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedDatabaseChangesEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedRecordDeletion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedRecordDeletion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedRecordDeletion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedRecordDeletion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedRecordDeletion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedRecordZoneChangesEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedRecordZoneChangesEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedRecordZoneChangesEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedRecordZoneChangesEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedRecordZoneChangesEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedZoneDeletion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedZoneDeletion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedZoneDeletion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedZoneDeletion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineFetchedZoneDeletion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingDatabaseChange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingDatabaseChange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingDatabaseChange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingDatabaseChange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingDatabaseChange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingRecordZoneChange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingRecordZoneChange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingRecordZoneChange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingRecordZoneChange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingRecordZoneChange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingZoneDelete_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingZoneDelete_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingZoneDelete_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingZoneDelete_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingZoneDelete_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingZoneSave_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingZoneSave_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingZoneSave_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingZoneSave_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEnginePendingZoneSave_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineRecordZoneChangeBatch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineRecordZoneChangeBatch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineRecordZoneChangeBatch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineRecordZoneChangeBatch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineRecordZoneChangeBatch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesScope_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesScope_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesScope_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesScope_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSendChangesScope_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSentDatabaseChangesEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSentDatabaseChangesEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSentDatabaseChangesEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSentDatabaseChangesEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSentDatabaseChangesEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSentRecordZoneChangesEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSentRecordZoneChangesEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSentRecordZoneChangesEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSentRecordZoneChangesEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineSentRecordZoneChangesEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineStateSerialization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineStateSerialization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineStateSerialization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineStateSerialization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineStateSerialization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineStateUpdateEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineStateUpdateEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineStateUpdateEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineStateUpdateEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineStateUpdateEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillFetchChangesEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillFetchChangesEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillFetchChangesEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillFetchChangesEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillFetchChangesEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillFetchRecordZoneChangesEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillFetchRecordZoneChangesEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillFetchRecordZoneChangesEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillFetchRecordZoneChangesEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillFetchRecordZoneChangesEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillSendChangesEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillSendChangesEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillSendChangesEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillSendChangesEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSyncEngineWillSendChangesEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSystemSharingUIObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSystemSharingUIObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSystemSharingUIObserver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSystemSharingUIObserver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKSystemSharingUIObserver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKUserIdentity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKUserIdentity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKUserIdentity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKUserIdentity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKUserIdentity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKUserIdentityLookupInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKUserIdentityLookupInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKUserIdentityLookupInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKUserIdentityLookupInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.CKUserIdentityLookupInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKRecordValue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKRecordValue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKRecordValue_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKSyncEngineDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKSyncEngineDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CloudKit.ICKSyncEngineDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddContactEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddContactEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddContactEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddContactEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddContactEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddGroupEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddGroupEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddGroupEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddGroupEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddGroupEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddMemberToGroupEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddMemberToGroupEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddMemberToGroupEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddMemberToGroupEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddMemberToGroupEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddSubgroupToGroupEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddSubgroupToGroupEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddSubgroupToGroupEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddSubgroupToGroupEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryAddSubgroupToGroupEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDeleteContactEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDeleteContactEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDeleteContactEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDeleteContactEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDeleteContactEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDeleteGroupEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDeleteGroupEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDeleteGroupEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDeleteGroupEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDeleteGroupEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDropEverythingEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDropEverythingEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDropEverythingEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDropEverythingEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryDropEverythingEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryEventVisitorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryEventVisitorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryEventVisitorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryFetchRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryFetchRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryFetchRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryFetchRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryFetchRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryRemoveMemberFromGroupEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryRemoveSubgroupFromGroupEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryUpdateContactEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryUpdateContactEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryUpdateContactEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryUpdateContactEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryUpdateContactEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryUpdateGroupEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryUpdateGroupEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryUpdateGroupEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryUpdateGroupEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNChangeHistoryUpdateGroupEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContact_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContact_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContact_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContact_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContact_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactFetchRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactFetchRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactFetchRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactFetchRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactFetchRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactProperty_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactProperty_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactProperty_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactProperty_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactProperty_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactRelation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactRelation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactRelation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactRelation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactRelation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactsUserDefaults_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactsUserDefaults_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactsUserDefaults_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactsUserDefaults_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactsUserDefaults_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactVCardSerialization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactVCardSerialization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactVCardSerialization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactVCardSerialization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContactVCardSerialization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContainer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContainer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNContainer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNFetchRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNFetchRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNFetchRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNFetchRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNFetchRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNFetchResult`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNFetchResult`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNFetchResult`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNFetchResult`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNFetchResult`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNInstantMessageAddress_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNInstantMessageAddress_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNInstantMessageAddress_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNInstantMessageAddress_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNInstantMessageAddress_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNKeyDescriptorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNKeyDescriptorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNKeyDescriptorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNLabeledValue`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNLabeledValue`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNLabeledValue`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNLabeledValue`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNLabeledValue`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutableContact_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutableContact_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutableContact_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutableContact_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutableContact_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutableGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutableGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutableGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutableGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutableGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutablePostalAddress_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutablePostalAddress_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutablePostalAddress_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutablePostalAddress_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNMutablePostalAddress_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPhoneNumber_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPhoneNumber_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPhoneNumber_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPhoneNumber_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPhoneNumber_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPostalAddress_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPostalAddress_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPostalAddress_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPostalAddress_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPostalAddress_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPostalAddressFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPostalAddressFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPostalAddressFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPostalAddressFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNPostalAddressFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNSaveRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNSaveRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNSaveRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNSaveRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNSaveRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNSocialProfile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNSocialProfile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNSocialProfile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNSocialProfile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.CNSocialProfile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.ICNChangeHistoryEventVisitor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.ICNChangeHistoryEventVisitor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.ICNChangeHistoryEventVisitor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.ICNKeyDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.ICNKeyDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Contacts.ICNKeyDescriptor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactPickerViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.CNContactViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.ICNContactPickerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.ICNContactPickerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.ICNContactPickerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.ICNContactViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.ICNContactViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ContactsUI.ICNContactViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation__CAAnimation._CAAnimationDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation__CAAnimation._CAAnimationDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation__CAAnimation._CAAnimationDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation__CAAnimation._CAAnimationDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation__CAAnimation._CAAnimationDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAActionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAActionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAActionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAAnimationGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CABasicAnimation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CABasicAnimation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CABasicAnimation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CABasicAnimation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CABasicAnimation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAConstraintLayoutManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAConstraintLayoutManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAConstraintLayoutManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAConstraintLayoutManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAConstraintLayoutManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CADisplayLink_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CADisplayLink_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CADisplayLink_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CADisplayLink_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CADisplayLink_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEdrMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEdrMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEdrMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEdrMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEdrMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEmitterCell_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEmitterCell_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEmitterCell_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEmitterCell_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEmitterCell_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEmitterLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEmitterLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEmitterLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEmitterLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAEmitterLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAGradientLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAGradientLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAGradientLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAGradientLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAGradientLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAKeyFrameAnimation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAKeyFrameAnimation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAKeyFrameAnimation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAKeyFrameAnimation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAKeyFrameAnimation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayoutManagerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayoutManagerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CALayoutManagerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTiming_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTiming_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTiming_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTiming_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTiming_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTimingFunction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTimingFunction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTimingFunction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTimingFunction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTimingFunction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTimingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTimingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMediaTimingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLink_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLink_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLink_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLink_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLink_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkUpdate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkUpdate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkUpdate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkUpdate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDisplayLinkUpdate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDrawableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDrawableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalDrawableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAMetalLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAPropertyAnimation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAPropertyAnimation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAPropertyAnimation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAPropertyAnimation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAPropertyAnimation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARemoteLayerClient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARemoteLayerClient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARemoteLayerClient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARemoteLayerClient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARemoteLayerClient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARemoteLayerServer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARemoteLayerServer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARemoteLayerServer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARemoteLayerServer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARemoteLayerServer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CARenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAReplicatorLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAReplicatorLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAReplicatorLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAReplicatorLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAReplicatorLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAScrollLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAScrollLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAScrollLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAScrollLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAScrollLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAShapeLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAShapeLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAShapeLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAShapeLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAShapeLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CASpringAnimation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CASpringAnimation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CASpringAnimation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CASpringAnimation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CASpringAnimation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATextLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATextLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATextLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATextLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATextLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATiledLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATiledLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATiledLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATiledLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATiledLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransaction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransaction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransaction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransaction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransaction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransformLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransformLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransformLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransformLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransformLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CATransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAValueFunction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAValueFunction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAValueFunction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAValueFunction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.CAValueFunction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAAction_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAAnimationDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAAnimationDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAAnimationDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayoutManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayoutManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICALayoutManager_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAMediaTiming_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAMediaTiming_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAMediaTiming_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAMetalDisplayLinkDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAMetalDisplayLinkDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAMetalDisplayLinkDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAMetalDrawable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAMetalDrawable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAnimation.ICAMetalDrawable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUAudioUnitViewConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUAudioUnitViewConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUAudioUnitViewConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUAudioUnitViewConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUAudioUnitViewConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUGenericViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUGenericViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUGenericViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUGenericViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUGenericViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.AUViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.CABTMidiCentralViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.CABTMidiCentralViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.CABTMidiCentralViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.CABTMidiCentralViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.CABTMidiCentralViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.CABTMidiLocalPeripheralViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.CABTMidiLocalPeripheralViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.CABTMidiLocalPeripheralViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.CABTMidiLocalPeripheralViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreAudioKit.CABTMidiLocalPeripheralViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBCentralManager._CBCentralManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBCentralManager._CBCentralManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBCentralManager._CBCentralManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBCentralManager._CBCentralManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBCentralManager._CBCentralManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBPeripheral._CBPeripheralDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBPeripheral._CBPeripheralDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBPeripheral._CBPeripheralDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBPeripheral._CBPeripheralDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBPeripheral._CBPeripheralDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBPeripheralManager._CBPeripheralManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBPeripheralManager._CBPeripheralManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBPeripheralManager._CBPeripheralManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBPeripheralManager._CBPeripheralManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth__CBPeripheralManager._CBPeripheralManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBATTRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBATTRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBATTRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBATTRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBATTRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBAttribute_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBAttribute_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBAttribute_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBAttribute_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBAttribute_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentral_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentral_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentral_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentral_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentral_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManagerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManagerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCentralManagerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCharacteristic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCharacteristic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCharacteristic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCharacteristic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBCharacteristic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBL2CapChannel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBL2CapChannel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBL2CapChannel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBL2CapChannel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBL2CapChannel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableCharacteristic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableCharacteristic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableCharacteristic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableCharacteristic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableCharacteristic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableService_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableService_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableService_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableService_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBMutableService_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheral_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheral_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheral_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheral_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheral_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManagerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManagerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBPeripheralManagerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBService_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBService_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBService_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBService_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBService_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBUUID_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBUUID_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBUUID_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBUUID_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.CBUUID_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.ICBCentralManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.ICBCentralManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.ICBCentralManagerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.ICBPeripheralDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.ICBPeripheralDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.ICBPeripheralDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.ICBPeripheralManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.ICBPeripheralManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreBluetooth.ICBPeripheralManagerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchedResultsControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchedResultsControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchedResultsControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchedResultsSectionInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchedResultsSectionInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchedResultsSectionInfo_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.INSFetchRequestResult_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAsynchronousFetchRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAsynchronousFetchRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAsynchronousFetchRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAsynchronousFetchRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAsynchronousFetchRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAsynchronousFetchResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAsynchronousFetchResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAsynchronousFetchResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAsynchronousFetchResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAsynchronousFetchResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAtomicStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAtomicStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAtomicStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAtomicStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAtomicStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAtomicStoreCacheNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAtomicStoreCacheNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAtomicStoreCacheNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAtomicStoreCacheNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAtomicStoreCacheNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAttributeDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAttributeDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAttributeDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAttributeDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSAttributeDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchDeleteRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchDeleteRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchDeleteRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchDeleteRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchDeleteRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchDeleteResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchDeleteResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchDeleteResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchDeleteResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchDeleteResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchInsertRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchInsertRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchInsertRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchInsertRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchInsertRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchInsertResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchInsertResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchInsertResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchInsertResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchInsertResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchUpdateRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchUpdateRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchUpdateRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchUpdateRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchUpdateRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchUpdateResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchUpdateResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchUpdateResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchUpdateResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSBatchUpdateResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCompositeAttributeDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCompositeAttributeDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCompositeAttributeDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCompositeAttributeDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCompositeAttributeDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSConstraintConflict_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSConstraintConflict_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSConstraintConflict_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSConstraintConflict_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSConstraintConflict_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCoreDataCoreSpotlightDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCoreDataCoreSpotlightDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCoreDataCoreSpotlightDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCoreDataCoreSpotlightDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCoreDataCoreSpotlightDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCustomMigrationStage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCustomMigrationStage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCustomMigrationStage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCustomMigrationStage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSCustomMigrationStage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSDerivedAttributeDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSDerivedAttributeDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSDerivedAttributeDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSDerivedAttributeDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSDerivedAttributeDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityMapping_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityMapping_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityMapping_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityMapping_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityMapping_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityMigrationPolicy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityMigrationPolicy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityMigrationPolicy_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityMigrationPolicy_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSEntityMigrationPolicy_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSExpressionDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSExpressionDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSExpressionDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSExpressionDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSExpressionDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedPropertyDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedPropertyDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedPropertyDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedPropertyDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedPropertyDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsSectionInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsSectionInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsSectionInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsSectionInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsSectionInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsSectionInfoWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsSectionInfoWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchedResultsSectionInfoWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchIndexDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchIndexDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchIndexDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchIndexDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchIndexDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchIndexElementDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchIndexElementDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchIndexElementDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchIndexElementDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchIndexElementDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestExpression_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestExpression_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestExpression_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestExpression_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestExpression_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSFetchRequestResultWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSIncrementalStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSIncrementalStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSIncrementalStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSIncrementalStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSIncrementalStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSIncrementalStoreNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSIncrementalStoreNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSIncrementalStoreNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSIncrementalStoreNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSIncrementalStoreNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSLightweightMigrationStage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSLightweightMigrationStage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSLightweightMigrationStage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSLightweightMigrationStage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSLightweightMigrationStage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectID_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectID_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectID_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectID_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectID_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectModel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectModel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectModel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectModel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectModel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectModelReference_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectModelReference_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectModelReference_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectModelReference_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSManagedObjectModelReference_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMappingModel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMappingModel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMappingModel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMappingModel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMappingModel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMergeConflict_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMergeConflict_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMergeConflict_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMergeConflict_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMergeConflict_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMergePolicy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMergePolicy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMergePolicy_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMergePolicy_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMergePolicy_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMigrationManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMigrationManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMigrationManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMigrationManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMigrationManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMigrationStage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMigrationStage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMigrationStage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMigrationStage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSMigrationStage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEventRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEventRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEventRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEventRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEventRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEventResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEventResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEventResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEventResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerEventResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentCloudKitContainerOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentContainer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentContainer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentContainer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryChange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryChange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryChange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryChange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryChange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryChangeRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryChangeRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryChangeRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryChangeRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryChangeRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryToken_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryToken_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryToken_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryTransaction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryTransaction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryTransaction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryTransaction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentHistoryTransaction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreAsynchronousResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreAsynchronousResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreAsynchronousResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreAsynchronousResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreAsynchronousResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreCoordinator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreCoordinator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreCoordinator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPersistentStoreResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPropertyDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPropertyDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPropertyDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPropertyDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPropertyDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPropertyMapping_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPropertyMapping_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPropertyMapping_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPropertyMapping_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSPropertyMapping_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSQueryGenerationToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSQueryGenerationToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSQueryGenerationToken_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSQueryGenerationToken_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSQueryGenerationToken_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSRelationshipDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSRelationshipDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSRelationshipDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSRelationshipDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSRelationshipDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSSaveChangesRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSSaveChangesRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSSaveChangesRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSSaveChangesRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSSaveChangesRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSStagedMigrationManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSStagedMigrationManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSStagedMigrationManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSStagedMigrationManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreData.NSStagedMigrationManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.Data_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.Data_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.Data_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.DataAdd_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.DataAdd_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.DataAdd_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.DataOr_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.DataOr_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.DataOr_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.Mach_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.Mach_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.Mach_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.MachReceive_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.MachReceive_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.MachReceive_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.MachSend_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.MachSend_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.MachSend_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.MemoryPressure_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.MemoryPressure_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.MemoryPressure_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.ProcessMonitor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.ProcessMonitor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.ProcessMonitor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.ReadMonitor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.ReadMonitor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.ReadMonitor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.SignalMonitor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.SignalMonitor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.SignalMonitor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.Timer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.Timer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.Timer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.VnodeMonitor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.VnodeMonitor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.VnodeMonitor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.WriteMonitor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.WriteMonitor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation__DispatchSource.WriteMonitor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFAllocator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFAllocator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFAllocator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFArray_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFBoolean_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFBoolean_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFBoolean_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFBundle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFBundle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFBundle_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFData_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFDictionary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFDictionary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFDictionary_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFMachPort_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFMachPort_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFMachPort_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFMessagePort_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFMessagePort_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFMessagePort_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFMutableString_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFMutableString_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFMutableString_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFNotificationCenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFNotificationCenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFNotificationCenter_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFPropertyList_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFPropertyList_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFPropertyList_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFReadStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFReadStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFReadStream_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFRunLoop_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFRunLoop_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFRunLoop_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFRunLoopSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFRunLoopSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFRunLoopSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFString_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFString_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFString_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFType_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFUrl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFUrl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFUrl_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFWriteStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFWriteStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.CFWriteStream_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchBlock_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchBlock_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchBlock_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchData_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchGroup_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchIO_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchIO_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchIO_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchQueue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchQueue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchQueue_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.DispatchSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.OSLog_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.OSLog_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreFoundation.OSLog_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGBitmapContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGBitmapContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGBitmapContext_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGColor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGColor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGColor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGColorConversionInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGColorConversionInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGColorConversionInfo_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGColorSpace_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGColorSpace_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGColorSpace_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGContext_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGDataConsumer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGDataConsumer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGDataConsumer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGDataProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGDataProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGDataProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGEvent_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGEventSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGEventSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGEventSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGFont_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGFont_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGFont_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGFunction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGFunction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGFunction_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGGradient_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGImage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGImage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGImage_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGLayer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPath_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPath_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPath_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPattern_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPattern_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPattern_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFContentStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFContentStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFContentStream_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFDocument_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFDocument_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFDocument_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFOperatorTable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFOperatorTable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFOperatorTable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFPage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFPage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFPage_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFScanner_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFScanner_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGPDFScanner_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGRenderingBufferProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGRenderingBufferProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGRenderingBufferProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGShading_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGShading_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreGraphics.CGShading_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticAdvancedPatternPlayerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticAdvancedPatternPlayerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticAdvancedPatternPlayerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticDeviceCapabilityWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticDeviceCapabilityWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticDeviceCapabilityWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticDynamicParameter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticDynamicParameter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticDynamicParameter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticDynamicParameter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticDynamicParameter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEngine_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEngine_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEngine_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEngine_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEngine_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEventParameter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEventParameter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEventParameter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEventParameter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticEventParameter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterAttributesWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterAttributesWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterAttributesWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterCurve_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterCurve_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterCurve_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterCurve_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterCurve_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterCurveControlPoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterCurveControlPoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterCurveControlPoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterCurveControlPoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticParameterCurveControlPoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticPattern_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticPattern_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticPattern_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticPattern_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticPattern_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticPatternPlayerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticPatternPlayerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.CHHapticPatternPlayerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticAdvancedPatternPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticAdvancedPatternPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticAdvancedPatternPlayer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticDeviceCapability_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticDeviceCapability_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticDeviceCapability_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticParameterAttributes_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticParameterAttributes_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticParameterAttributes_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticPatternPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticPatternPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreHaptics.ICHHapticPatternPlayer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAccordionFoldTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAccordionFoldTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAccordionFoldTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAccordionFoldTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAccordionFoldTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAccordionFoldTransitionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAccordionFoldTransitionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAccordionFoldTransitionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAdditionCompositing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAdditionCompositing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAdditionCompositing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAdditionCompositing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAdditionCompositing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineClamp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineClamp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineClamp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineClamp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineClamp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineClampProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineClampProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineClampProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTransform_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTransform_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTransform_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTransform_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAffineTransform_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverageMaximumRed_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverageMaximumRed_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverageMaximumRed_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverageMaximumRed_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverageMaximumRed_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverageMaximumRedProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverageMaximumRedProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverageMaximumRedProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverageProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverageProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaAverageProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaBoundsRed_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaBoundsRed_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaBoundsRed_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaBoundsRed_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaBoundsRed_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaBoundsRedProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaBoundsRedProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaBoundsRedProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaHistogram_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaHistogram_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaHistogram_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaHistogram_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaHistogram_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaHistogramProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaHistogramProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaHistogramProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaLogarithmicHistogram_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaLogarithmicHistogram_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaLogarithmicHistogram_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaLogarithmicHistogram_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaLogarithmicHistogram_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaLogarithmicHistogramProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaLogarithmicHistogramProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaLogarithmicHistogramProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximumAlpha_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximumAlpha_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximumAlpha_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximumAlpha_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximumAlpha_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximumAlphaProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximumAlphaProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximumAlphaProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximumProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximumProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMaximumProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimumAlpha_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimumAlpha_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimumAlpha_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimumAlpha_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimumAlpha_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimumAlphaProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimumAlphaProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimumAlphaProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimumProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimumProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinimumProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMaxProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMaxProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMaxProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMaxRed_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMaxRed_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMaxRed_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMaxRed_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMaxRed_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMaxRedProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMaxRedProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaMinMaxRedProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaReductionFilterProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaReductionFilterProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAreaReductionFilterProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAttributedTextImageGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAttributedTextImageGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAttributedTextImageGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAttributedTextImageGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAttributedTextImageGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAttributedTextImageGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAttributedTextImageGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAttributedTextImageGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIAztecCodeGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarcodeGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarsSwipeTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarsSwipeTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarsSwipeTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarsSwipeTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarsSwipeTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarsSwipeTransitionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarsSwipeTransitionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBarsSwipeTransitionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBicubicScaleTransform_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBicubicScaleTransform_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBicubicScaleTransform_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBicubicScaleTransform_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBicubicScaleTransform_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBicubicScaleTransformProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBicubicScaleTransformProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBicubicScaleTransformProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithAlphaMask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithAlphaMask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithAlphaMask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithAlphaMask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithAlphaMask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithBlueMask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithBlueMask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithBlueMask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithBlueMask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithBlueMask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithMask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithMask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithMask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithMask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithMask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithMaskProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithMaskProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithMaskProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithRedMask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithRedMask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithRedMask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithRedMask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlendWithRedMask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBloom_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBloom_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBloom_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBloom_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBloom_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBloomProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBloomProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBloomProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRectangleGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRectangleGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRectangleGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRectangleGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRectangleGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRectangleGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRectangleGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRectangleGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRoundedRectangleGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRoundedRectangleGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRoundedRectangleGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRoundedRectangleGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRoundedRectangleGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRoundedRectangleGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRoundedRectangleGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBlurredRoundedRectangleGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBokehBlur_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBokehBlur_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBokehBlur_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBokehBlur_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBokehBlur_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBokehBlurProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBokehBlurProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBokehBlurProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBoxBlur_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBoxBlur_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBoxBlur_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBoxBlur_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBoxBlur_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBoxBlurProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBoxBlurProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBoxBlurProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortionLinear_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortionLinear_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortionLinear_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortionLinear_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortionLinear_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortionLinearProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortionLinearProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortionLinearProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIBumpDistortionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICameraCalibrationLensCorrection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICameraCalibrationLensCorrection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICameraCalibrationLensCorrection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICameraCalibrationLensCorrection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICameraCalibrationLensCorrection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICannyEdgeDetector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICannyEdgeDetector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICannyEdgeDetector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICannyEdgeDetector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICannyEdgeDetector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICannyEdgeDetectorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICannyEdgeDetectorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICannyEdgeDetectorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICheckerboardGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICheckerboardGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICheckerboardGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICheckerboardGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICheckerboardGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICheckerboardGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICheckerboardGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICheckerboardGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircleSplashDistortion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircleSplashDistortion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircleSplashDistortion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircleSplashDistortion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircleSplashDistortion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircleSplashDistortionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircleSplashDistortionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircleSplashDistortionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularScreen_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularScreen_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularScreen_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularScreen_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularScreen_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularScreenProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularScreenProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularScreenProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularWrap_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularWrap_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularWrap_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularWrap_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularWrap_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularWrapProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularWrapProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICircularWrapProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIClamp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIClamp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIClamp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIClamp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIClamp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICmykHalftone_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICmykHalftone_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICmykHalftone_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICmykHalftone_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICmykHalftone_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICmykHalftoneProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICmykHalftoneProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICmykHalftoneProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICode128BarcodeGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICode128BarcodeGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICode128BarcodeGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICode128BarcodeGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICode128BarcodeGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICode128BarcodeGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICode128BarcodeGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICode128BarcodeGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICodeGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICodeGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICodeGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICodeGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICodeGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorAbsoluteDifference_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorAbsoluteDifference_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorAbsoluteDifference_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorAbsoluteDifference_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorAbsoluteDifference_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorAbsoluteDifferenceProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorAbsoluteDifferenceProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorAbsoluteDifferenceProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorBurnBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorBurnBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorBurnBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorBurnBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorBurnBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorClamp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorClamp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorClamp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorClamp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorClamp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorClampProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorClampProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorClampProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorControls_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorControls_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorControls_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorControls_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorControls_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorControlsProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorControlsProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorControlsProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCrossPolynomial_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCrossPolynomial_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCrossPolynomial_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCrossPolynomial_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCrossPolynomial_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCrossPolynomialProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCrossPolynomialProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCrossPolynomialProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCube_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCube_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCube_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCube_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCube_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubeProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubeProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubeProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubesMixedWithMask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubesMixedWithMask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubesMixedWithMask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubesMixedWithMask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubesMixedWithMask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubesMixedWithMaskProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubesMixedWithMaskProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubesMixedWithMaskProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubeWithColorSpace_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubeWithColorSpace_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubeWithColorSpace_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubeWithColorSpace_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubeWithColorSpace_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubeWithColorSpaceProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubeWithColorSpaceProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCubeWithColorSpaceProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCurves_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCurves_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCurves_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCurves_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCurves_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCurvesProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCurvesProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorCurvesProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorDodgeBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorDodgeBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorDodgeBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorDodgeBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorDodgeBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorInvert_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorInvert_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorInvert_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorInvert_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorInvert_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorInvertProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorInvertProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorInvertProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMap_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMap_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMap_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMap_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMap_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMapProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMapProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMapProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMatrix_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMatrix_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMatrix_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMatrix_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMatrix_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMatrixProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMatrixProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMatrixProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMonochrome_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMonochrome_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMonochrome_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMonochrome_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMonochrome_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMonochromeProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMonochromeProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorMonochromeProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPolynomial_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPolynomial_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPolynomial_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPolynomial_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPolynomial_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPolynomialProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPolynomialProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPolynomialProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPosterize_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPosterize_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPosterize_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPosterize_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPosterize_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPosterizeProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPosterizeProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorPosterizeProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThreshold_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThreshold_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThreshold_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThreshold_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThreshold_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThresholdOtsu_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThresholdOtsu_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThresholdOtsu_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThresholdOtsu_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThresholdOtsu_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThresholdOtsuProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThresholdOtsuProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThresholdOtsuProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThresholdProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThresholdProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColorThresholdProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColumnAverage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColumnAverage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColumnAverage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColumnAverage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColumnAverage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColumnAverageProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColumnAverageProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIColumnAverageProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIComicEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIComicEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIComicEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIComicEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIComicEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIComicEffectProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIComicEffectProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIComicEffectProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICompositeOperationProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICompositeOperationProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICompositeOperationProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICompositingFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICompositingFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICompositingFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICompositingFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICompositingFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConstantColorGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConstantColorGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConstantColorGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConstantColorGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConstantColorGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvertLabProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvertLabProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvertLabProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution3X3_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution3X3_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution3X3_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution3X3_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution3X3_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution5X5_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution5X5_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution5X5_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution5X5_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution5X5_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution7X7_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution7X7_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution7X7_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution7X7_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution7X7_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution9Horizontal_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution9Horizontal_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution9Horizontal_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution9Horizontal_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution9Horizontal_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution9Vertical_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution9Vertical_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution9Vertical_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution9Vertical_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolution9Vertical_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionCore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionCore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionCore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionCore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionCore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB3X3_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB3X3_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB3X3_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB3X3_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB3X3_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB5X5_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB5X5_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB5X5_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB5X5_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB5X5_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB7X7_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB7X7_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB7X7_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB7X7_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB7X7_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB9Horizontal_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB9Horizontal_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB9Horizontal_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB9Horizontal_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB9Horizontal_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB9Vertical_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB9Vertical_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB9Vertical_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB9Vertical_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIConvolutionRGB9Vertical_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICopyMachineTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICopyMachineTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICopyMachineTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICopyMachineTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICopyMachineTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICopyMachineTransitionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICopyMachineTransitionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICopyMachineTransitionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICoreMLModelFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICoreMLModelFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICoreMLModelFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICoreMLModelFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICoreMLModelFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICoreMLModelProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICoreMLModelProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICoreMLModelProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrop_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrop_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrop_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrop_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrop_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrystallize_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrystallize_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrystallize_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrystallize_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrystallize_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrystallizeProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrystallizeProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CICrystallizeProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDarkenBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDarkenBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDarkenBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDarkenBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDarkenBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDataMatrixCodeDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDataMatrixCodeDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDataMatrixCodeDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDataMatrixCodeDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDataMatrixCodeDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthBlurEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthBlurEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthBlurEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthBlurEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthBlurEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthDisparityConverter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthDisparityConverter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthDisparityConverter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthDisparityConverter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthDisparityConverter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthOfField_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthOfField_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthOfField_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthOfField_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthOfField_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthOfFieldProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthOfFieldProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthOfFieldProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthToDisparity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthToDisparity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthToDisparity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthToDisparity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthToDisparity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthToDisparityProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthToDisparityProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDepthToDisparityProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDetector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDetector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDetector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDetector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDetector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDifferenceBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDifferenceBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDifferenceBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDifferenceBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDifferenceBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDiscBlur_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDiscBlur_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDiscBlur_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDiscBlur_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDiscBlur_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDiscBlurProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDiscBlurProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDiscBlurProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisintegrateWithMaskTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisintegrateWithMaskTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisintegrateWithMaskTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisintegrateWithMaskTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisintegrateWithMaskTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisintegrateWithMaskTransitionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisintegrateWithMaskTransitionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisintegrateWithMaskTransitionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisparityToDepth_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisparityToDepth_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisparityToDepth_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisparityToDepth_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisparityToDepth_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisparityToDepthProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisparityToDepthProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisparityToDepthProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisplacementDistortion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisplacementDistortion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisplacementDistortion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisplacementDistortion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisplacementDistortion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisplacementDistortionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisplacementDistortionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDisplacementDistortionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDissolveTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDissolveTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDissolveTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDissolveTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDissolveTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDissolveTransitionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDissolveTransitionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDissolveTransitionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistanceGradientFromRedMask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistanceGradientFromRedMask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistanceGradientFromRedMask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistanceGradientFromRedMask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistanceGradientFromRedMask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistanceGradientFromRedMaskProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistanceGradientFromRedMaskProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistanceGradientFromRedMaskProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistortionFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistortionFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistortionFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistortionFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDistortionFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDither_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDither_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDither_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDither_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDither_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDitherProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDitherProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDitherProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDivideBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDivideBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDivideBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDivideBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDivideBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDocumentEnhancer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDocumentEnhancer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDocumentEnhancer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDocumentEnhancer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDocumentEnhancer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDocumentEnhancerProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDocumentEnhancerProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDocumentEnhancerProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDotScreen_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDotScreen_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDotScreen_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDotScreen_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDotScreen_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDotScreenProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDotScreenProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDotScreenProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDroste_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDroste_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDroste_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDroste_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDroste_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDrosteProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDrosteProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIDrosteProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgePreserveUpsampleFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgePreserveUpsampleFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgePreserveUpsampleFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgePreserveUpsampleFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgePreserveUpsampleFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgePreserveUpsampleProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgePreserveUpsampleProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgePreserveUpsampleProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdges_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdges_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdges_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdges_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdges_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgesProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgesProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgesProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgeWork_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgeWork_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgeWork_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgeWork_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgeWork_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgeWorkProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgeWorkProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEdgeWorkProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEightfoldReflectedTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEightfoldReflectedTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEightfoldReflectedTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEightfoldReflectedTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEightfoldReflectedTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEightfoldReflectedTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEightfoldReflectedTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIEightfoldReflectedTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExclusionBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExclusionBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExclusionBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExclusionBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExclusionBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExposureAdjust_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExposureAdjust_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExposureAdjust_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExposureAdjust_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExposureAdjust_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExposureAdjustProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExposureAdjustProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIExposureAdjustProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFaceBalance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFaceBalance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFaceBalance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFaceBalance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFaceBalance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFaceFeature_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFaceFeature_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFaceFeature_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFaceFeature_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFaceFeature_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFalseColor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFalseColor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFalseColor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFalseColor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFalseColor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFalseColorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFalseColorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFalseColorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFeature_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFeature_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFeature_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFeature_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFeature_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterConstructorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterConstructorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterConstructorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterShape_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterShape_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterShape_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterShape_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFilterShape_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFlashTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFlashTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFlashTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFlashTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFlashTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFlashTransitionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFlashTransitionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFlashTransitionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourCoordinateGeometryFilterProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourCoordinateGeometryFilterProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourCoordinateGeometryFilterProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldReflectedTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldReflectedTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldReflectedTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldReflectedTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldReflectedTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldReflectedTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldReflectedTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldReflectedTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldRotatedTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldRotatedTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldRotatedTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldRotatedTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldRotatedTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldRotatedTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldRotatedTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldRotatedTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldTranslatedTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldTranslatedTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldTranslatedTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldTranslatedTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldTranslatedTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldTranslatedTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldTranslatedTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIFourfoldTranslatedTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaborGradients_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaborGradients_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaborGradients_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaborGradients_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaborGradients_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaborGradientsProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaborGradientsProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaborGradientsProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGammaAdjust_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGammaAdjust_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGammaAdjust_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGammaAdjust_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGammaAdjust_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGammaAdjustProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGammaAdjustProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGammaAdjustProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianBlur_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianBlur_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianBlur_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianBlur_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianBlur_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianBlurProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianBlurProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianBlurProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianGradientProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianGradientProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGaussianGradientProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassDistortion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassDistortion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassDistortion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassDistortion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassDistortion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassDistortionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassDistortionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassDistortionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassLozenge_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassLozenge_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassLozenge_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassLozenge_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassLozenge_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassLozengeProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassLozengeProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlassLozengeProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlideReflectedTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlideReflectedTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlideReflectedTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlideReflectedTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlideReflectedTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlideReflectedTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlideReflectedTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGlideReflectedTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGloom_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGloom_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGloom_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGloom_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGloom_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGloomProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGloomProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGloomProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGuidedFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGuidedFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGuidedFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGuidedFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIGuidedFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHardLightBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHardLightBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHardLightBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHardLightBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHardLightBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHatchedScreen_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHatchedScreen_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHatchedScreen_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHatchedScreen_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHatchedScreen_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHatchedScreenProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHatchedScreenProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHatchedScreenProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHeightFieldFromMask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHeightFieldFromMask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHeightFieldFromMask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHeightFieldFromMask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHeightFieldFromMask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHeightFieldFromMaskProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHeightFieldFromMaskProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHeightFieldFromMaskProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHexagonalPixellate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHexagonalPixellate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHexagonalPixellate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHexagonalPixellate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHexagonalPixellate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHexagonalPixellateProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHexagonalPixellateProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHexagonalPixellateProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHighlightShadowAdjust_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHighlightShadowAdjust_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHighlightShadowAdjust_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHighlightShadowAdjust_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHighlightShadowAdjust_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHighlightShadowAdjustProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHighlightShadowAdjustProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHighlightShadowAdjustProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHistogramDisplayFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHistogramDisplayFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHistogramDisplayFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHistogramDisplayFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHistogramDisplayFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHistogramDisplayProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHistogramDisplayProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHistogramDisplayProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHoleDistortion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHoleDistortion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHoleDistortion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHoleDistortion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHoleDistortion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHoleDistortionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHoleDistortionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHoleDistortionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueAdjust_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueAdjust_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueAdjust_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueAdjust_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueAdjust_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueAdjustProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueAdjustProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueAdjustProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueSaturationValueGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueSaturationValueGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueSaturationValueGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueSaturationValueGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueSaturationValueGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueSaturationValueGradientProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueSaturationValueGradientProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIHueSaturationValueGradientProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageAccumulator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageAccumulator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageAccumulator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageAccumulator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageAccumulator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProcessorInputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProcessorInputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProcessorInputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProcessorKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProcessorKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProcessorKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProcessorKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProcessorKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProcessorOutputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProcessorOutputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProcessorOutputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIImageProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKaleidoscope_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKaleidoscope_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKaleidoscope_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKaleidoscope_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKaleidoscope_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKaleidoscopeProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKaleidoscopeProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKaleidoscopeProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionCombined_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionCombined_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionCombined_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionCombined_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionCombined_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionCombinedProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionCombinedProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionCombinedProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionHorizontal_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionHorizontal_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionHorizontal_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionHorizontal_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionHorizontal_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionHorizontalProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionHorizontalProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionHorizontalProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionVertical_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionVertical_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionVertical_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionVertical_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionVertical_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionVerticalProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionVerticalProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKeystoneCorrectionVerticalProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKMeans_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKMeans_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKMeans_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKMeans_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKMeans_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKMeansProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKMeansProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIKMeansProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILabDeltaE_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILabDeltaE_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILabDeltaE_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILabDeltaE_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILabDeltaE_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILabDeltaEProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILabDeltaEProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILabDeltaEProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILanczosScaleTransform_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILanczosScaleTransform_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILanczosScaleTransform_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILanczosScaleTransform_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILanczosScaleTransform_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILanczosScaleTransformProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILanczosScaleTransformProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILanczosScaleTransformProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILenticularHaloGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILenticularHaloGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILenticularHaloGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILenticularHaloGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILenticularHaloGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILenticularHaloGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILenticularHaloGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILenticularHaloGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightenBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightenBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightenBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightenBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightenBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightTunnel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightTunnel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightTunnel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightTunnel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightTunnel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightTunnelProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightTunnelProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILightTunnelProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearBlur_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearBlur_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearBlur_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearBlur_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearBlur_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearBurnBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearBurnBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearBurnBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearBurnBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearBurnBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearDodgeBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearDodgeBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearDodgeBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearDodgeBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearDodgeBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearGradientProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearGradientProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearGradientProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearLightBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearLightBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearLightBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearLightBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearLightBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearToSRGBToneCurve_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearToSRGBToneCurve_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearToSRGBToneCurve_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearToSRGBToneCurve_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearToSRGBToneCurve_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearToSrgbToneCurveProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearToSrgbToneCurveProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILinearToSrgbToneCurveProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineOverlay_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineOverlay_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineOverlay_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineOverlay_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineOverlay_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineOverlayProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineOverlayProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineOverlayProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineScreen_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineScreen_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineScreen_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineScreen_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineScreen_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineScreenProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineScreenProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILineScreenProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILuminosityBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILuminosityBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILuminosityBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILuminosityBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CILuminosityBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskedVariableBlur_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskedVariableBlur_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskedVariableBlur_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskedVariableBlur_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskedVariableBlur_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskedVariableBlurProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskedVariableBlurProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskedVariableBlurProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskToAlpha_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskToAlpha_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskToAlpha_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskToAlpha_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskToAlpha_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskToAlphaProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskToAlphaProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaskToAlphaProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumComponent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumComponent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumComponent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumComponentProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumComponentProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumComponentProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumCompositing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumCompositing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumCompositing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumCompositing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumCompositing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumScaleTransform_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumScaleTransform_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumScaleTransform_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumScaleTransform_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumScaleTransform_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumScaleTransformProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumScaleTransformProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMaximumScaleTransformProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMedianFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMedianFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMedianFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMedianFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMedianFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMedianProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMedianProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMedianProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMeshGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMeshGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMeshGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMeshGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMeshGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMeshGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMeshGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMeshGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumComponent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumComponent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumComponent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumComponentProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumComponentProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumComponentProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumCompositing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumCompositing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumCompositing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumCompositing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMinimumCompositing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMix_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMix_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMix_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMix_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMix_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMixProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMixProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMixProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIModTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIModTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIModTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIModTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIModTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIModTransitionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIModTransitionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIModTransitionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphology_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphology_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphology_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphology_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphology_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyGradientProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyGradientProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyGradientProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMaximum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMaximum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMaximum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMaximum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMaximum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMaximumProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMaximumProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMaximumProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMinimum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMinimum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMinimum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMinimum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMinimum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMinimumProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMinimumProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyMinimumProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMaximum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMaximum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMaximum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMaximum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMaximum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMaximumProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMaximumProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMaximumProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMinimum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMinimum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMinimum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMinimum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMinimum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMinimumProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMinimumProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMorphologyRectangleMinimumProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMotionBlur_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMotionBlur_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMotionBlur_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMotionBlur_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMotionBlur_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMotionBlurProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMotionBlurProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMotionBlurProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMultiplyBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMultiplyBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMultiplyBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMultiplyBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMultiplyBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMultiplyCompositing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMultiplyCompositing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMultiplyCompositing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMultiplyCompositing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIMultiplyCompositing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartStretched_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartStretched_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartStretched_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartStretched_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartStretched_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartStretchedProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartStretchedProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartStretchedProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartTiled_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartTiled_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartTiled_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartTiled_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartTiled_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartTiledProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartTiledProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINinePartTiledProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINoiseReduction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINoiseReduction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINoiseReduction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINoiseReduction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINoiseReduction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINoiseReductionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINoiseReductionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CINoiseReductionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOpTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOpTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOpTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOpTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOpTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOpTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOpTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOpTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOverlayBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOverlayBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOverlayBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOverlayBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIOverlayBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlTransitionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlTransitionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlTransitionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlWithShadowTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlWithShadowTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlWithShadowTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlWithShadowTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlWithShadowTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlWithShadowTransitionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlWithShadowTransitionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPageCurlWithShadowTransitionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPaletteCentroid_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPaletteCentroid_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPaletteCentroid_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPaletteCentroid_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPaletteCentroid_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPaletteCentroidProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPaletteCentroidProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPaletteCentroidProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPalettize_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPalettize_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPalettize_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPalettize_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPalettize_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPalettizeProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPalettizeProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPalettizeProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIParallelogramTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIParallelogramTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIParallelogramTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIParallelogramTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIParallelogramTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIParallelogramTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIParallelogramTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIParallelogramTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417BarcodeGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417BarcodeGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417BarcodeGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417BarcodeGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417BarcodeGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417BarcodeGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417BarcodeGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417BarcodeGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417CodeDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417CodeDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417CodeDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417CodeDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPdf417CodeDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPersonSegmentation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPersonSegmentation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPersonSegmentation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPersonSegmentation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPersonSegmentation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPersonSegmentationProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPersonSegmentationProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPersonSegmentationProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveCorrection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveCorrection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveCorrection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveCorrection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveCorrection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveCorrectionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveCorrectionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveCorrectionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveRotate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveRotate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveRotate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveRotate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveRotate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveRotateProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveRotateProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveRotateProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransform_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransform_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransform_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransform_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransform_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransformProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransformProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransformProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransformWithExtent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransformWithExtent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransformWithExtent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransformWithExtent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransformWithExtent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransformWithExtentProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransformWithExtentProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPerspectiveTransformWithExtentProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectChrome_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectChrome_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectChrome_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectChrome_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectChrome_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectFade_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectFade_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectFade_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectFade_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectFade_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectInstant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectInstant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectInstant_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectInstant_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectInstant_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectMono_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectMono_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectMono_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectMono_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectMono_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectNoir_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectNoir_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectNoir_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectNoir_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectNoir_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectProcess_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectProcess_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectProcess_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectProcess_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectProcess_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectTonal_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectTonal_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectTonal_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectTonal_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectTonal_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectTransfer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectTransfer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectTransfer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectTransfer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPhotoEffectTransfer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinchDistortion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinchDistortion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinchDistortion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinchDistortion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinchDistortion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinchDistortionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinchDistortionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinchDistortionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinLightBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinLightBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinLightBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinLightBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPinLightBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPixellate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPixellate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPixellate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPixellate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPixellate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPixellateProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPixellateProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPixellateProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPointillize_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPointillize_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPointillize_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPointillize_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPointillize_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPointillizeProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPointillizeProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIPointillizeProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeFeature_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeFeature_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeFeature_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeFeature_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeFeature_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIQRCodeGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRadialGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRadialGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRadialGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRadialGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRadialGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRadialGradientProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRadialGradientProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRadialGradientProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRandomGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRandomGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRandomGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRandomGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRandomGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRandomGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRandomGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRandomGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRawFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRawFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRawFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRawFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRawFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRectangleFeature_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRectangleFeature_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRectangleFeature_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRectangleFeature_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRectangleFeature_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIReductionFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIReductionFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIReductionFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIReductionFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIReductionFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderDestination_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderDestination_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderDestination_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderDestination_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderDestination_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRenderTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRippleTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRippleTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRippleTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRippleTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRippleTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRippleTransitionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRippleTransitionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRippleTransitionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedQRCodeGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedQRCodeGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedQRCodeGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedQRCodeGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedQRCodeGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedQRCodeGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedQRCodeGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedQRCodeGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleStrokeGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleStrokeGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleStrokeGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleStrokeGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleStrokeGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleStrokeGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleStrokeGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRoundedRectangleStrokeGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRowAverage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRowAverage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRowAverage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRowAverage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRowAverage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRowAverageProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRowAverageProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIRowAverageProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaliencyMapFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaliencyMapFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaliencyMapFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaliencyMapFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaliencyMapFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaliencyMapProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaliencyMapProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaliencyMapProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISampleNearest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISampleNearest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISampleNearest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISampleNearest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISampleNearest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISampler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISampler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISampler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISampler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISampler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaturationBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaturationBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaturationBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaturationBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISaturationBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIScreenBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIScreenBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIScreenBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIScreenBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIScreenBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIScreenFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIScreenFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIScreenFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIScreenFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIScreenFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISepiaTone_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISepiaTone_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISepiaTone_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISepiaTone_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISepiaTone_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISepiaToneProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISepiaToneProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISepiaToneProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIShadedMaterial_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIShadedMaterial_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIShadedMaterial_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIShadedMaterial_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIShadedMaterial_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIShadedMaterialProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIShadedMaterialProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIShadedMaterialProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISharpenLuminance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISharpenLuminance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISharpenLuminance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISharpenLuminance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISharpenLuminance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISharpenLuminanceProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISharpenLuminanceProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISharpenLuminanceProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISignedDistanceGradientFromRedMask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISignedDistanceGradientFromRedMask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISignedDistanceGradientFromRedMask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISignedDistanceGradientFromRedMask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISignedDistanceGradientFromRedMask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISignedDistanceGradientFromRedMaskProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISignedDistanceGradientFromRedMaskProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISignedDistanceGradientFromRedMaskProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldReflectedTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldReflectedTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldReflectedTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldReflectedTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldReflectedTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldReflectedTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldReflectedTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldReflectedTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldRotatedTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldRotatedTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldRotatedTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldRotatedTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldRotatedTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldRotatedTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldRotatedTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISixfoldRotatedTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISmoothLinearGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISmoothLinearGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISmoothLinearGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISmoothLinearGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISmoothLinearGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISmoothLinearGradientProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISmoothLinearGradientProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISmoothLinearGradientProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISobelGradients_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISobelGradients_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISobelGradients_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISobelGradients_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISobelGradients_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISobelGradientsProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISobelGradientsProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISobelGradientsProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISoftLightBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISoftLightBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISoftLightBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISoftLightBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISoftLightBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceAtopCompositing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceAtopCompositing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceAtopCompositing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceAtopCompositing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceAtopCompositing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceInCompositing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceInCompositing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceInCompositing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceInCompositing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceInCompositing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceOutCompositing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceOutCompositing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceOutCompositing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceOutCompositing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceOutCompositing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceOverCompositing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceOverCompositing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceOverCompositing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceOverCompositing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISourceOverCompositing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotColor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotColor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotColor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotColor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotColor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotColorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotColorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotColorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotLight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotLight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotLight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotLight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotLight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotLightProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotLightProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISpotLightProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISRGBToneCurveToLinear_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISRGBToneCurveToLinear_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISRGBToneCurveToLinear_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISRGBToneCurveToLinear_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISRGBToneCurveToLinear_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISrgbToneCurveToLinearProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISrgbToneCurveToLinearProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISrgbToneCurveToLinearProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStarShineGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStarShineGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStarShineGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStarShineGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStarShineGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStarShineGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStarShineGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStarShineGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStraightenFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStraightenFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStraightenFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStraightenFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStraightenFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStraightenProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStraightenProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStraightenProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStretchCrop_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStretchCrop_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStretchCrop_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStretchCrop_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStretchCrop_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStretchCropProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStretchCropProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStretchCropProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStripesGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStripesGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStripesGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStripesGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStripesGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStripesGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStripesGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIStripesGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISubtractBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISubtractBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISubtractBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISubtractBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISubtractBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISunbeamsGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISunbeamsGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISunbeamsGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISunbeamsGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISunbeamsGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISunbeamsGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISunbeamsGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISunbeamsGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISwipeTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISwipeTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISwipeTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISwipeTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISwipeTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISwipeTransitionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISwipeTransitionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISwipeTransitionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISystemToneMap_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISystemToneMap_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISystemToneMap_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISystemToneMap_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISystemToneMap_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISystemToneMapProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISystemToneMapProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CISystemToneMapProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITemperatureAndTint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITemperatureAndTint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITemperatureAndTint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITemperatureAndTint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITemperatureAndTint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITemperatureAndTintProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITemperatureAndTintProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITemperatureAndTintProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextFeature_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextFeature_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextFeature_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextFeature_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextFeature_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextImageGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextImageGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextImageGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextImageGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextImageGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextImageGeneratorProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextImageGeneratorProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITextImageGeneratorProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIThermal_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIThermal_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIThermal_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIThermal_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIThermal_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIThermalProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIThermalProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIThermalProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITileFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITileFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITileFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITileFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITileFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneCurve_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneCurve_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneCurve_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneCurve_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneCurve_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneCurveProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneCurveProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneCurveProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneMapHeadroom_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneMapHeadroom_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneMapHeadroom_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneMapHeadroom_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneMapHeadroom_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneMapHeadroomProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneMapHeadroomProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIToneMapHeadroomProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITorusLensDistortion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITorusLensDistortion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITorusLensDistortion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITorusLensDistortion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITorusLensDistortion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITorusLensDistortionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITorusLensDistortionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITorusLensDistortionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITransitionFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITransitionFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITransitionFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITransitionFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITransitionFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITransitionFilterProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITransitionFilterProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITransitionFilterProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleKaleidoscope_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleKaleidoscope_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleKaleidoscope_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleKaleidoscope_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleKaleidoscope_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleKaleidoscopeProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleKaleidoscopeProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleKaleidoscopeProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITriangleTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwelvefoldReflectedTile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwelvefoldReflectedTile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwelvefoldReflectedTile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwelvefoldReflectedTile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwelvefoldReflectedTile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwelvefoldReflectedTileProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwelvefoldReflectedTileProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwelvefoldReflectedTileProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwirlDistortion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwirlDistortion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwirlDistortion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwirlDistortion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwirlDistortion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwirlDistortionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwirlDistortionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CITwirlDistortionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIUnsharpMask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIUnsharpMask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIUnsharpMask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIUnsharpMask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIUnsharpMask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIUnsharpMaskProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIUnsharpMaskProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIUnsharpMaskProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVibrance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVibrance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVibrance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVibrance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVibrance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVibranceProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVibranceProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVibranceProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignette_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignette_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignette_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignette_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignette_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignetteEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignetteEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignetteEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignetteEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignetteEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignetteEffectProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignetteEffectProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignetteEffectProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignetteProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignetteProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVignetteProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVividLightBlendMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVividLightBlendMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVividLightBlendMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVividLightBlendMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVividLightBlendMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVortexDistortion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVortexDistortion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVortexDistortion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVortexDistortion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVortexDistortion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVortexDistortionProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVortexDistortionProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIVortexDistortionProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWarpKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWarpKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWarpKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWarpKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWarpKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWhitePointAdjust_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWhitePointAdjust_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWhitePointAdjust_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWhitePointAdjust_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWhitePointAdjust_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWhitePointAdjustProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWhitePointAdjustProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIWhitePointAdjustProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIXRay_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIXRay_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIXRay_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIXRay_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIXRay_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIXRayProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIXRayProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIXRayProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIZoomBlur_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIZoomBlur_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIZoomBlur_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIZoomBlur_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIZoomBlur_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIZoomBlurProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIZoomBlurProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.CIZoomBlurProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAccordionFoldTransitionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAccordionFoldTransitionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAccordionFoldTransitionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAffineClampProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAffineClampProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAffineClampProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAffineTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAffineTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAffineTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaAverageMaximumRedProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaAverageMaximumRedProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaAverageMaximumRedProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaAverageProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaAverageProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaAverageProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaBoundsRedProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaBoundsRedProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaBoundsRedProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaHistogramProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaHistogramProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaHistogramProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaLogarithmicHistogramProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaLogarithmicHistogramProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaLogarithmicHistogramProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMaximumAlphaProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMaximumAlphaProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMaximumAlphaProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMaximumProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMaximumProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMaximumProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinimumAlphaProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinimumAlphaProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinimumAlphaProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinimumProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinimumProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinimumProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinMaxProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinMaxProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinMaxProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinMaxRedProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinMaxRedProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaMinMaxRedProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaReductionFilterProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaReductionFilterProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAreaReductionFilterProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAttributedTextImageGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAttributedTextImageGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAttributedTextImageGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAztecCodeGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAztecCodeGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIAztecCodeGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBarcodeGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBarcodeGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBarcodeGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBarsSwipeTransitionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBarsSwipeTransitionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBarsSwipeTransitionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBicubicScaleTransformProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBicubicScaleTransformProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBicubicScaleTransformProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBlendWithMaskProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBlendWithMaskProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBlendWithMaskProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBloomProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBloomProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBloomProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBlurredRectangleGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBlurredRectangleGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBlurredRectangleGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBlurredRoundedRectangleGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBlurredRoundedRectangleGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBlurredRoundedRectangleGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBokehBlurProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBokehBlurProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBokehBlurProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBoxBlurProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBoxBlurProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBoxBlurProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBumpDistortionLinearProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBumpDistortionLinearProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBumpDistortionLinearProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBumpDistortionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBumpDistortionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIBumpDistortionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICannyEdgeDetectorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICannyEdgeDetectorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICannyEdgeDetectorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICheckerboardGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICheckerboardGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICheckerboardGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICircleSplashDistortionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICircleSplashDistortionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICircleSplashDistortionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICircularScreenProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICircularScreenProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICircularScreenProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICircularWrapProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICircularWrapProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICircularWrapProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICmykHalftoneProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICmykHalftoneProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICmykHalftoneProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICode128BarcodeGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICode128BarcodeGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICode128BarcodeGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorAbsoluteDifferenceProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorAbsoluteDifferenceProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorAbsoluteDifferenceProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorClampProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorClampProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorClampProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorControlsProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorControlsProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorControlsProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCrossPolynomialProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCrossPolynomialProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCrossPolynomialProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCubeProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCubeProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCubeProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCubesMixedWithMaskProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCubesMixedWithMaskProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCubesMixedWithMaskProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCubeWithColorSpaceProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCubeWithColorSpaceProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCubeWithColorSpaceProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCurvesProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCurvesProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorCurvesProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorInvertProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorInvertProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorInvertProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorMapProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorMapProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorMapProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorMatrixProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorMatrixProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorMatrixProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorMonochromeProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorMonochromeProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorMonochromeProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorPolynomialProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorPolynomialProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorPolynomialProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorPosterizeProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorPosterizeProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorPosterizeProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorThresholdOtsuProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorThresholdOtsuProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorThresholdOtsuProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorThresholdProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorThresholdProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColorThresholdProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColumnAverageProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColumnAverageProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIColumnAverageProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIComicEffectProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIComicEffectProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIComicEffectProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICompositeOperationProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICompositeOperationProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICompositeOperationProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIConvertLabProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIConvertLabProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIConvertLabProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIConvolutionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIConvolutionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIConvolutionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICopyMachineTransitionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICopyMachineTransitionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICopyMachineTransitionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICoreMLModelProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICoreMLModelProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICoreMLModelProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICrystallizeProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICrystallizeProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICICrystallizeProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDepthOfFieldProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDepthOfFieldProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDepthOfFieldProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDepthToDisparityProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDepthToDisparityProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDepthToDisparityProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDiscBlurProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDiscBlurProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDiscBlurProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDisintegrateWithMaskTransitionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDisintegrateWithMaskTransitionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDisintegrateWithMaskTransitionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDisparityToDepthProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDisparityToDepthProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDisparityToDepthProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDisplacementDistortionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDisplacementDistortionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDisplacementDistortionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDissolveTransitionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDissolveTransitionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDissolveTransitionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDistanceGradientFromRedMaskProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDistanceGradientFromRedMaskProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDistanceGradientFromRedMaskProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDitherProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDitherProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDitherProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDocumentEnhancerProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDocumentEnhancerProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDocumentEnhancerProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDotScreenProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDotScreenProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDotScreenProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDrosteProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDrosteProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIDrosteProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEdgePreserveUpsampleProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEdgePreserveUpsampleProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEdgePreserveUpsampleProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEdgesProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEdgesProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEdgesProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEdgeWorkProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEdgeWorkProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEdgeWorkProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEightfoldReflectedTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEightfoldReflectedTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIEightfoldReflectedTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIExposureAdjustProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIExposureAdjustProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIExposureAdjustProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFalseColorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFalseColorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFalseColorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFilterConstructor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFilterConstructor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFilterConstructor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFilterProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFilterProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFilterProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFlashTransitionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFlashTransitionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFlashTransitionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourCoordinateGeometryFilterProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourCoordinateGeometryFilterProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourCoordinateGeometryFilterProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourfoldReflectedTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourfoldReflectedTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourfoldReflectedTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourfoldRotatedTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourfoldRotatedTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourfoldRotatedTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourfoldTranslatedTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourfoldTranslatedTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIFourfoldTranslatedTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGaborGradientsProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGaborGradientsProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGaborGradientsProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGammaAdjustProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGammaAdjustProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGammaAdjustProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGaussianBlurProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGaussianBlurProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGaussianBlurProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGaussianGradientProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGaussianGradientProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGaussianGradientProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGlassDistortionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGlassDistortionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGlassDistortionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGlassLozengeProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGlassLozengeProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGlassLozengeProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGlideReflectedTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGlideReflectedTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGlideReflectedTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGloomProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGloomProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIGloomProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHatchedScreenProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHatchedScreenProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHatchedScreenProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHeightFieldFromMaskProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHeightFieldFromMaskProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHeightFieldFromMaskProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHexagonalPixellateProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHexagonalPixellateProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHexagonalPixellateProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHighlightShadowAdjustProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHighlightShadowAdjustProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHighlightShadowAdjustProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHistogramDisplayProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHistogramDisplayProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHistogramDisplayProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHoleDistortionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHoleDistortionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHoleDistortionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHueAdjustProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHueAdjustProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHueAdjustProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHueSaturationValueGradientProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHueSaturationValueGradientProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIHueSaturationValueGradientProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIImageProcessorInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIImageProcessorInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIImageProcessorInput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIImageProcessorOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIImageProcessorOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIImageProcessorOutput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKaleidoscopeProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKaleidoscopeProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKaleidoscopeProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKeystoneCorrectionCombinedProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKeystoneCorrectionCombinedProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKeystoneCorrectionCombinedProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKeystoneCorrectionHorizontalProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKeystoneCorrectionHorizontalProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKeystoneCorrectionHorizontalProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKeystoneCorrectionVerticalProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKeystoneCorrectionVerticalProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKeystoneCorrectionVerticalProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKMeansProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKMeansProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIKMeansProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILabDeltaEProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILabDeltaEProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILabDeltaEProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILanczosScaleTransformProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILanczosScaleTransformProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILanczosScaleTransformProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILenticularHaloGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILenticularHaloGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILenticularHaloGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILightTunnelProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILightTunnelProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILightTunnelProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILinearGradientProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILinearGradientProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILinearGradientProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILinearToSrgbToneCurveProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILinearToSrgbToneCurveProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILinearToSrgbToneCurveProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILineOverlayProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILineOverlayProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILineOverlayProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILineScreenProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILineScreenProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICILineScreenProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaskedVariableBlurProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaskedVariableBlurProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaskedVariableBlurProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaskToAlphaProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaskToAlphaProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaskToAlphaProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaximumComponentProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaximumComponentProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaximumComponentProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaximumScaleTransformProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaximumScaleTransformProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMaximumScaleTransformProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMedianProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMedianProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMedianProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMeshGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMeshGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMeshGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMinimumComponentProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMinimumComponentProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMinimumComponentProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMixProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMixProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMixProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIModTransitionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIModTransitionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIModTransitionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyGradientProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyGradientProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyGradientProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyMaximumProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyMaximumProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyMaximumProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyMinimumProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyMinimumProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyMinimumProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyRectangleMaximumProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyRectangleMaximumProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyRectangleMaximumProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyRectangleMinimumProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyRectangleMinimumProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMorphologyRectangleMinimumProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMotionBlurProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMotionBlurProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIMotionBlurProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICINinePartStretchedProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICINinePartStretchedProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICINinePartStretchedProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICINinePartTiledProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICINinePartTiledProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICINinePartTiledProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICINoiseReductionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICINoiseReductionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICINoiseReductionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIOpTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIOpTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIOpTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPageCurlTransitionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPageCurlTransitionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPageCurlTransitionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPageCurlWithShadowTransitionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPageCurlWithShadowTransitionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPageCurlWithShadowTransitionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPaletteCentroidProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPaletteCentroidProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPaletteCentroidProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPalettizeProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPalettizeProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPalettizeProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIParallelogramTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIParallelogramTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIParallelogramTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPdf417BarcodeGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPdf417BarcodeGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPdf417BarcodeGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPersonSegmentationProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPersonSegmentationProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPersonSegmentationProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveCorrectionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveCorrectionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveCorrectionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveRotateProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveRotateProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveRotateProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveTransformProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveTransformProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveTransformProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveTransformWithExtentProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveTransformWithExtentProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPerspectiveTransformWithExtentProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPhotoEffectProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPhotoEffectProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPhotoEffectProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPinchDistortionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPinchDistortionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPinchDistortionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPixellateProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPixellateProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPixellateProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPointillizeProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPointillizeProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIPointillizeProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIQRCodeGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIQRCodeGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIQRCodeGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRadialGradientProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRadialGradientProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRadialGradientProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRandomGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRandomGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRandomGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRippleTransitionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRippleTransitionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRippleTransitionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRoundedQRCodeGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRoundedQRCodeGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRoundedQRCodeGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRoundedRectangleGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRoundedRectangleGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRoundedRectangleGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRoundedRectangleStrokeGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRoundedRectangleStrokeGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRoundedRectangleStrokeGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRowAverageProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRowAverageProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIRowAverageProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISaliencyMapProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISaliencyMapProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISaliencyMapProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISepiaToneProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISepiaToneProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISepiaToneProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIShadedMaterialProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIShadedMaterialProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIShadedMaterialProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISharpenLuminanceProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISharpenLuminanceProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISharpenLuminanceProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISignedDistanceGradientFromRedMaskProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISignedDistanceGradientFromRedMaskProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISignedDistanceGradientFromRedMaskProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISixfoldReflectedTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISixfoldReflectedTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISixfoldReflectedTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISixfoldRotatedTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISixfoldRotatedTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISixfoldRotatedTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISmoothLinearGradientProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISmoothLinearGradientProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISmoothLinearGradientProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISobelGradientsProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISobelGradientsProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISobelGradientsProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISpotColorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISpotColorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISpotColorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISpotLightProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISpotLightProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISpotLightProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISrgbToneCurveToLinearProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISrgbToneCurveToLinearProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISrgbToneCurveToLinearProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStarShineGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStarShineGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStarShineGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStraightenProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStraightenProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStraightenProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStretchCropProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStretchCropProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStretchCropProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStripesGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStripesGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIStripesGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISunbeamsGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISunbeamsGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISunbeamsGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISwipeTransitionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISwipeTransitionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISwipeTransitionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISystemToneMapProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISystemToneMapProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICISystemToneMapProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITemperatureAndTintProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITemperatureAndTintProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITemperatureAndTintProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITextImageGeneratorProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITextImageGeneratorProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITextImageGeneratorProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIThermalProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIThermalProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIThermalProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIToneCurveProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIToneCurveProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIToneCurveProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIToneMapHeadroomProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIToneMapHeadroomProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIToneMapHeadroomProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITorusLensDistortionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITorusLensDistortionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITorusLensDistortionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITransitionFilterProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITransitionFilterProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITransitionFilterProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITriangleKaleidoscopeProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITriangleKaleidoscopeProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITriangleKaleidoscopeProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITriangleTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITriangleTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITriangleTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITwelvefoldReflectedTileProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITwelvefoldReflectedTileProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITwelvefoldReflectedTileProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITwirlDistortionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITwirlDistortionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICITwirlDistortionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIUnsharpMaskProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIUnsharpMaskProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIUnsharpMaskProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVibranceProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVibranceProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVibranceProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVignetteEffectProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVignetteEffectProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVignetteEffectProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVignetteProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVignetteProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVignetteProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVortexDistortionProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVortexDistortionProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIVortexDistortionProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIWhitePointAdjustProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIWhitePointAdjustProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIWhitePointAdjustProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIXRayProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIXRayProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIXRayProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIZoomBlurProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIZoomBlurProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreImage.ICIZoomBlurProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation__CLLocationManager._CLLocationManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation__CLLocationManager._CLLocationManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation__CLLocationManager._CLLocationManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation__CLLocationManager._CLLocationManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation__CLLocationManager._CLLocationManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBackgroundActivitySession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBackgroundActivitySession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBackgroundActivitySession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBackgroundActivitySession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBackgroundActivitySession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBackgroundActivitySessionDiagnostic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBackgroundActivitySessionDiagnostic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBackgroundActivitySessionDiagnostic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBackgroundActivitySessionDiagnostic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBackgroundActivitySessionDiagnostic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeacon_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeacon_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeacon_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeacon_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeacon_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconIdentityCondition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconIdentityCondition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconIdentityCondition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconIdentityCondition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconIdentityCondition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconIdentityConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconIdentityConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconIdentityConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconIdentityConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconIdentityConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconRegion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconRegion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconRegion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconRegion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLBeaconRegion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCircularGeographicCondition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCircularGeographicCondition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCircularGeographicCondition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCircularGeographicCondition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCircularGeographicCondition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCircularRegion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCircularRegion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCircularRegion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCircularRegion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCircularRegion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCondition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCondition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCondition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCondition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLCondition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLFloor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLFloor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLFloor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLFloor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLFloor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLGeocoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLGeocoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLGeocoder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLGeocoder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLGeocoder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLHeading_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLHeading_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLHeading_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLHeading_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLHeading_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManagerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManagerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationManagerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationSourceInformation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationSourceInformation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationSourceInformation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationSourceInformation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationSourceInformation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationUpdater_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationUpdater_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationUpdater_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationUpdater_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLLocationUpdater_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitorConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitorConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitorConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitorConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitorConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitoringEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitoringEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitoringEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitoringEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitoringEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitoringRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitoringRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitoringRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitoringRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLMonitoringRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLPlacemark_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLPlacemark_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLPlacemark_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLPlacemark_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLPlacemark_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLRegion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLRegion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLRegion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLRegion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLRegion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLServiceSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLServiceSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLServiceSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLServiceSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLServiceSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLServiceSessionDiagnostic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLServiceSessionDiagnostic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLServiceSessionDiagnostic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLServiceSessionDiagnostic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLServiceSessionDiagnostic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLUpdate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLUpdate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLUpdate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLUpdate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLUpdate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLVisit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLVisit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLVisit_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLVisit_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.CLVisit_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.ICLLocationManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.ICLLocationManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocation.ICLLocationManagerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocationUI__CLLocationButton.CLLocationButtonAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocationUI__CLLocationButton.CLLocationButtonAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocationUI__CLLocationButton.CLLocationButtonAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocationUI__CLLocationButton.CLLocationButtonAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocationUI__CLLocationButton.CLLocationButtonAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocationUI.CLLocationButton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocationUI.CLLocationButton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocationUI.CLLocationButton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocationUI.CLLocationButton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreLocationUI.CLLocationButton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMAudioFormatDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMAudioFormatDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMAudioFormatDescription_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMBlockBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMBlockBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMBlockBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMClock_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMClock_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMClock_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMClockOrTimebase_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMClockOrTimebase_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMClockOrTimebase_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMFormatDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMFormatDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMFormatDescription_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMSampleBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMSampleBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMSampleBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMTagCollection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMTagCollection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMTagCollection_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMTaggedBufferGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMTaggedBufferGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMTaggedBufferGroup_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMTimebase_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMTimebase_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMTimebase_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMVideoFormatDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMVideoFormatDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMedia.CMVideoFormatDescription_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.IMidiCIProfileResponderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.IMidiCIProfileResponderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.IMidiCIProfileResponderDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.Midi2DeviceInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.Midi2DeviceInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.Midi2DeviceInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.Midi2DeviceInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.Midi2DeviceInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDeviceInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDeviceInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDeviceInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDeviceInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDeviceInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDeviceManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDeviceManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDeviceManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDeviceManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDeviceManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDiscoveredNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDiscoveredNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDiscoveredNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDiscoveredNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDiscoveredNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDiscoveryManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDiscoveryManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDiscoveryManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDiscoveryManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIDiscoveryManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileResponderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileResponderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileResponderDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileResponderDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileResponderDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileResponderDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileResponderDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileResponderDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIProfileState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIResponder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIResponder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIResponder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIResponder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCIResponder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCISession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCISession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCISession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCISession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiCISession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkConnection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkConnection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkConnection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkConnection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkConnection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkHost_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkHost_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkHost_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkHost_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkHost_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiNetworkSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpCIProfile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpCIProfile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpCIProfile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpCIProfile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpCIProfile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpEndpoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpEndpoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpEndpoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpEndpoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpEndpoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpEndpointManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpEndpointManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpEndpointManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpEndpointManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpEndpointManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpFunctionBlock_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpFunctionBlock_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpFunctionBlock_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpFunctionBlock_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpFunctionBlock_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpMutableEndpoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpMutableEndpoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpMutableEndpoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpMutableEndpoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpMutableEndpoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpMutableFunctionBlock_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpMutableFunctionBlock_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpMutableFunctionBlock_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpMutableFunctionBlock_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMidi.MidiUmpMutableFunctionBlock_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLBatchProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLBatchProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLBatchProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLComputeDeviceProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLComputeDeviceProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLComputeDeviceProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLCustomLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLCustomLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLCustomLayer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLCustomModel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLCustomModel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLCustomModel_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLFeatureProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLFeatureProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLFeatureProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLWritable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLWritable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.IMLWritable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLArrayBatchProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLArrayBatchProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLArrayBatchProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLArrayBatchProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLArrayBatchProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLBatchProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLBatchProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLBatchProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputeDeviceProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputeDeviceProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputeDeviceProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlan_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlan_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlan_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlan_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlan_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlanCost_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlanCost_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlanCost_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlanCost_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlanCost_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlanDeviceUsage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlanDeviceUsage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlanDeviceUsage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlanDeviceUsage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLComputePlanDeviceUsage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCpuComputeDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCpuComputeDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCpuComputeDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCpuComputeDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCpuComputeDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCustomLayerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCustomLayerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCustomLayerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCustomModel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCustomModel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCustomModel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCustomModel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCustomModel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCustomModelWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCustomModelWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLCustomModelWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLDictionaryConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLDictionaryConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLDictionaryConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLDictionaryConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLDictionaryConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLDictionaryFeatureProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLDictionaryFeatureProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLDictionaryFeatureProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLDictionaryFeatureProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLDictionaryFeatureProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureValue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureValue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureValue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureValue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLFeatureValue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLGpuComputeDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLGpuComputeDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLGpuComputeDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLGpuComputeDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLGpuComputeDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageSize_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageSize_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageSize_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageSize_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageSize_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageSizeConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageSizeConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageSizeConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageSizeConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLImageSizeConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLKey_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLKey_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLKey_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLKey_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLKey_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMetricKey_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMetricKey_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMetricKey_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMetricKey_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMetricKey_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelCollection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelCollection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelCollection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelCollection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelCollection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelCollectionEntry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelCollectionEntry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelCollectionEntry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelCollectionEntry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelCollectionEntry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructure_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructure_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructure_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructure_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructure_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureNeuralNetwork_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureNeuralNetwork_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureNeuralNetwork_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureNeuralNetwork_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureNeuralNetwork_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureNeuralNetworkLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureNeuralNetworkLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureNeuralNetworkLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureNeuralNetworkLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureNeuralNetworkLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructurePipeline_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructurePipeline_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructurePipeline_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructurePipeline_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructurePipeline_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgram_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgram_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgram_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgram_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgram_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramArgument_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramArgument_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramArgument_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramArgument_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramArgument_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramBinding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramBinding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramBinding_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramBinding_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramBinding_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramBlock_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramBlock_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramBlock_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramBlock_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramBlock_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramFunction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramFunction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramFunction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramFunction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramFunction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramNamedValueType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramNamedValueType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramNamedValueType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramNamedValueType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramNamedValueType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramValue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramValue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramValue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramValue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramValue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramValueType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramValueType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramValueType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramValueType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLModelStructureProgramValueType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArrayConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArrayConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArrayConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArrayConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArrayConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArrayShapeConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArrayShapeConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArrayShapeConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArrayShapeConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLMultiArrayShapeConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLNeuralEngineComputeDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLNeuralEngineComputeDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLNeuralEngineComputeDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLNeuralEngineComputeDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLNeuralEngineComputeDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLNumericConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLNumericConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLNumericConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLNumericConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLNumericConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLOptimizationHints_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLOptimizationHints_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLOptimizationHints_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLOptimizationHints_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLOptimizationHints_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLParameterDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLParameterDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLParameterDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLParameterDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLParameterDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLParameterKey_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLParameterKey_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLParameterKey_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLParameterKey_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLParameterKey_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLPredictionOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLPredictionOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLPredictionOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLPredictionOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLPredictionOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLSequence_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLSequence_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLSequence_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLSequence_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLSequence_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLSequenceConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLSequenceConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLSequenceConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLSequenceConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLSequenceConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLStateConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLStateConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLStateConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLStateConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLStateConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateProgressHandlers_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateProgressHandlers_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateProgressHandlers_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateProgressHandlers_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateProgressHandlers_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLUpdateTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLWritableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLWritableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreML.MLWritableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAbsoluteAltitudeData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAbsoluteAltitudeData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAbsoluteAltitudeData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAbsoluteAltitudeData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAbsoluteAltitudeData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAccelerometerData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAccelerometerData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAccelerometerData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAccelerometerData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAccelerometerData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAltimeter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAltimeter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAltimeter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAltimeter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAltimeter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAltitudeData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAltitudeData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAltitudeData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAltitudeData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAltitudeData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAmbientPressureData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAmbientPressureData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAmbientPressureData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAmbientPressureData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAmbientPressureData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAttitude_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAttitude_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAttitude_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAttitude_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMAttitude_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMBatchedSensorManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMBatchedSensorManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMBatchedSensorManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMBatchedSensorManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMBatchedSensorManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMDeviceMotion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMDeviceMotion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMDeviceMotion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMDeviceMotion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMDeviceMotion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMDyskineticSymptomResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMDyskineticSymptomResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMDyskineticSymptomResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMDyskineticSymptomResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMDyskineticSymptomResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMGyroData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMGyroData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMGyroData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMGyroData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMGyroData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneActivityManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneActivityManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneActivityManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneActivityManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneActivityManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManagerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManagerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHeadphoneMotionManagerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHighFrequencyHeartRateData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHighFrequencyHeartRateData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHighFrequencyHeartRateData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHighFrequencyHeartRateData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMHighFrequencyHeartRateData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMLogItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMLogItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMLogItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMLogItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMLogItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMagnetometerData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMagnetometerData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMagnetometerData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMagnetometerData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMagnetometerData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionActivity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionActivity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionActivity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionActivity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionActivity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionActivityManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionActivityManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionActivityManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionActivityManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionActivityManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMMotionManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMOdometerData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMOdometerData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMOdometerData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMOdometerData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMOdometerData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometerData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometerData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometerData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometerData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometerData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometerEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometerEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometerEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometerEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMPedometerEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedAccelerometerData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedAccelerometerData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedAccelerometerData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedAccelerometerData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedAccelerometerData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedPressureData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedPressureData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedPressureData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedPressureData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedPressureData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedRotationRateData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedRotationRateData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedRotationRateData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedRotationRateData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRecordedRotationRateData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRotationRateData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRotationRateData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRotationRateData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRotationRateData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMRotationRateData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMSensorDataList_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMSensorDataList_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMSensorDataList_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMSensorDataList_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMSensorDataList_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMSensorRecorder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMSensorRecorder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMSensorRecorder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMSensorRecorder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMSensorRecorder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMStepCounter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMStepCounter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMStepCounter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMStepCounter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMStepCounter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMTremorResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMTremorResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMTremorResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMTremorResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.CMTremorResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.ICMHeadphoneMotionManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.ICMHeadphoneMotionManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreMotion.ICMHeadphoneMotionManagerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCFeliCaTag_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCFeliCaTag_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCFeliCaTag_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCIso15693Tag_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCIso15693Tag_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCIso15693Tag_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCIso7816Tag_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCIso7816Tag_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCIso7816Tag_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCMiFareTag_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCMiFareTag_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCMiFareTag_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCNdefReaderSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCNdefReaderSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCNdefReaderSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCNdefTag_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCNdefTag_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCNdefTag_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCReaderSessionContract_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCReaderSessionContract_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCReaderSessionContract_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCReaderSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCReaderSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCReaderSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCTag_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCTag_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCTag_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCTagReaderSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCTagReaderSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCTagReaderSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCVasReaderSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCVasReaderSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.INFCVasReaderSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCFeliCaTagWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCFeliCaTagWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCFeliCaTagWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693CustomCommandConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693CustomCommandConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693CustomCommandConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693CustomCommandConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693CustomCommandConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693ReaderSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693ReaderSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693ReaderSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693ReaderSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693ReaderSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693ReadMultipleBlocksConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693TagWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693TagWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso15693TagWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso7816Apdu_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso7816Apdu_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso7816Apdu_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso7816Apdu_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso7816Apdu_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso7816TagWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso7816TagWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCIso7816TagWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCMiFareTagWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCMiFareTagWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCMiFareTagWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefMessage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefMessage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefMessage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefMessage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefMessage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefPayload_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefPayload_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefPayload_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefPayload_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefPayload_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefReaderSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefTagWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefTagWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCNdefTagWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCPaymentTagReaderSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCPaymentTagReaderSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCPaymentTagReaderSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCPaymentTagReaderSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCPaymentTagReaderSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSessionContractWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSessionContractWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSessionContractWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCReaderSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagCommandConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagCommandConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagCommandConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagCommandConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagCommandConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagReaderSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCTagWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasCommandConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasCommandConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasCommandConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasCommandConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasCommandConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasReaderSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreNFC.NFCVasResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSCustomAttributeKey_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSCustomAttributeKey_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSCustomAttributeKey_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSCustomAttributeKey_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSCustomAttributeKey_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSImportExtension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSImportExtension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSImportExtension_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSImportExtension_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSImportExtension_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSIndexExtensionRequestHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSIndexExtensionRequestHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSIndexExtensionRequestHandler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSIndexExtensionRequestHandler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSIndexExtensionRequestHandler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSLocalizedString_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSLocalizedString_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSLocalizedString_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSLocalizedString_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSLocalizedString_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSPerson_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSPerson_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSPerson_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSPerson_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSPerson_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndex_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndex_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndex_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndex_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndex_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndexDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndexDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndexDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndexDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndexDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndexDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndexDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableIndexDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableItemAttributeSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableItemAttributeSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableItemAttributeSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableItemAttributeSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchableItemAttributeSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchQueryContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchQueryContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchQueryContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchQueryContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSearchQueryContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSuggestion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSuggestion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSuggestion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSuggestion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSSuggestion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSUserQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSUserQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSUserQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSUserQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSUserQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSUserQueryContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSUserQueryContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSUserQueryContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSUserQueryContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.CSUserQueryContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.ICSSearchableIndexDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.ICSSearchableIndexDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreSpotlight.ICSSearchableIndexDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCall_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCall_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCall_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCall_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCall_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCallCenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCallCenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCallCenter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCallCenter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCallCenter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCarrier_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCarrier_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCarrier_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCarrier_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCarrier_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanLifecycleProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanLifecycleProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanLifecycleProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanLifecycleProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanLifecycleProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProvisioning_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProvisioning_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProvisioning_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProvisioning_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProvisioning_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProvisioningRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProvisioningRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProvisioningRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProvisioningRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanProvisioningRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanStatus_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanStatus_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanStatus_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanStatus_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTCellularPlanStatus_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfoDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfoDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfoDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfoDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfoDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfoDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfoDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.CTTelephonyNetworkInfoDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.ICTTelephonyNetworkInfoDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.ICTTelephonyNetworkInfoDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreTelephony.ICTTelephonyNetworkInfoDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTAdaptiveImageProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTAdaptiveImageProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTAdaptiveImageProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFont_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFont_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFont_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFontCollection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFontCollection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFontCollection_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFontDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFontDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFontDescriptor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFrame_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFrame_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFrame_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFramesetter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFramesetter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTFramesetter_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTGlyphInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTGlyphInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTGlyphInfo_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTLine_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTLine_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTLine_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTParagraphStyle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTParagraphStyle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTParagraphStyle_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTRun_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTRun_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTRun_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTRunDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTRunDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTRunDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTTextTab_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTTextTab_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTTextTab_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTTypesetter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTTypesetter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.CTTypesetter_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.ICTAdaptiveImageProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.ICTAdaptiveImageProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreText.ICTAdaptiveImageProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVImageBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVImageBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVImageBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalBufferCache_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalBufferCache_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalBufferCache_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalTexture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalTexture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalTexture_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalTextureCache_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalTextureCache_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVMetalTextureCache_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVPixelBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVPixelBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVPixelBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVPixelBufferPool_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVPixelBufferPool_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreVideo.CVPixelBufferPool_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreWlan.CWEventDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreWlan.CWEventDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreWlan.CWEventDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreWlan.CWEventDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreWlan.CWEventDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreWlan.CWEventDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreWlan.CWEventDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreWlan.CWEventDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CoreWlan.ICWEventDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CoreWlan.ICWEventDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CoreWlan.ICWEventDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKSmartCardTokenDriverDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKSmartCardTokenDriverDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKSmartCardTokenDriverDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKSmartCardUserInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKSmartCardUserInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKSmartCardUserInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKTokenDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKTokenDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKTokenDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKTokenDriverDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKTokenDriverDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKTokenDriverDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKTokenSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKTokenSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.ITKTokenSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKBerTlvRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKBerTlvRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKBerTlvRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKBerTlvRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKBerTlvRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKCompactTlvRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKCompactTlvRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKCompactTlvRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKCompactTlvRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKCompactTlvRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSimpleTlvRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSimpleTlvRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSimpleTlvRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSimpleTlvRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSimpleTlvRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCard_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCard_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCard_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCard_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCard_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardAtr_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardAtr_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardAtr_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardAtr_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardAtr_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardAtrInterfaceGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardAtrInterfaceGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardAtrInterfaceGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardAtrInterfaceGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardAtrInterfaceGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardPinFormat_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardPinFormat_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardPinFormat_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardPinFormat_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardPinFormat_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlot_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlot_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlot_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlot_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlot_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlotManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlotManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlotManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlotManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlotManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlotNFCSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlotNFCSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlotNFCSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlotNFCSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardSlotNFCSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardToken_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardToken_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardToken_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenDriver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenDriver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenDriver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenDriver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenDriver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenDriverDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenDriverDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenDriverDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenRegistrationManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenRegistrationManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenRegistrationManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenRegistrationManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenRegistrationManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardTokenSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForPinOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinChange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinChange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinChange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinChange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinChange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinVerification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinVerification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinVerification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinVerification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKSmartCardUserInteractionForSecurePinVerification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTlvRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTlvRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTlvRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTlvRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTlvRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKToken_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKToken_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKToken_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenAuthOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenAuthOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenAuthOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenAuthOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenAuthOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenDriverDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeyAlgorithm_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeyAlgorithm_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeyAlgorithm_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeyAlgorithm_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeyAlgorithm_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainCertificate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainCertificate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainCertificate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainCertificate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainCertificate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainContents_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainContents_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainContents_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainContents_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainContents_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainKey_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainKey_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainKey_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainKey_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeychainKey_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeyExchangeParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeyExchangeParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeyExchangeParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeyExchangeParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenKeyExchangeParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenPasswordAuthOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenPasswordAuthOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenPasswordAuthOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenPasswordAuthOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenPasswordAuthOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSmartCardPinAuthOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSmartCardPinAuthOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSmartCardPinAuthOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSmartCardPinAuthOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenSmartCardPinAuthOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenWatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenWatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenWatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenWatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenWatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenWatcherTokenInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenWatcherTokenInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenWatcherTokenInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenWatcherTokenInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:CryptoTokenKit.TKTokenWatcherTokenInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchCalendarEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchCalendarEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchCalendarEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchCalendarEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchCalendarEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchEmailAddress_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchEmailAddress_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchEmailAddress_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchEmailAddress_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchEmailAddress_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchFlightNumber_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchFlightNumber_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchFlightNumber_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchFlightNumber_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchFlightNumber_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchLink_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchLink_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchLink_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchLink_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchLink_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchMoneyAmount_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchMoneyAmount_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchMoneyAmount_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchMoneyAmount_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchMoneyAmount_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchPhoneNumber_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchPhoneNumber_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchPhoneNumber_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchPhoneNumber_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchPhoneNumber_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchPostalAddress_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchPostalAddress_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchPostalAddress_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchPostalAddress_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchPostalAddress_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchShipmentTrackingNumber_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchShipmentTrackingNumber_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchShipmentTrackingNumber_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchShipmentTrackingNumber_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DataDetection.DDMatchShipmentTrackingNumber_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceCheck.DCAppAttestService_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceCheck.DCAppAttestService_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceCheck.DCAppAttestService_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceCheck.DCAppAttestService_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceCheck.DCAppAttestService_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceCheck.DCDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceCheck.DCDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceCheck.DCDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceCheck.DCDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceCheck.DCDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDeviceEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDeviceEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDeviceEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDeviceEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDeviceEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDiscoverySession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDiscoverySession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDiscoverySession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDiscoverySession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:DeviceDiscoveryExtension.DDDiscoverySession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKAlarm_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKAlarm_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKAlarm_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKAlarm_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKAlarm_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKCalendar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKCalendar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKCalendar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKCalendar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKCalendar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKCalendarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKCalendarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKCalendarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKCalendarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKCalendarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKEventStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKEventStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKEventStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKEventStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKEventStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKParticipant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKParticipant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKParticipant_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKParticipant_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKParticipant_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceDayOfWeek_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceDayOfWeek_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceDayOfWeek_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceDayOfWeek_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceDayOfWeek_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceEnd_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceEnd_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceEnd_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceEnd_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceEnd_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceRule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceRule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceRule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceRule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKRecurrenceRule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKReminder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKReminder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKReminder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKReminder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKReminder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKStructuredLocation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKStructuredLocation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKStructuredLocation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKStructuredLocation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKStructuredLocation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceRoomTypeDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceRoomTypeDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceRoomTypeDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceRoomTypeDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceRoomTypeDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceUrlDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceUrlDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceUrlDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceUrlDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKit.EKVirtualConferenceUrlDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKCalendarChooser._EKCalendarChooserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKCalendarChooser._EKCalendarChooserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKCalendarChooser._EKCalendarChooserDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKCalendarChooser._EKCalendarChooserDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKCalendarChooser._EKCalendarChooserDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventEditViewController._EKEventEditViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventEditViewController._EKEventEditViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventEditViewController._EKEventEditViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventEditViewController._EKEventEditViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventEditViewController._EKEventEditViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventEditViewController.EKEventEditViewControllerAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventEditViewController.EKEventEditViewControllerAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventEditViewController.EKEventEditViewControllerAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventEditViewController.EKEventEditViewControllerAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventEditViewController.EKEventEditViewControllerAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventViewController._EKEventViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventViewController._EKEventViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventViewController._EKEventViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventViewController._EKEventViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI__EKEventViewController._EKEventViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooser_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooser_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooser_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooser_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooser_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooserDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooserDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooserDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooserDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooserDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKCalendarChooserDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventEditViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.EKEventViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.IEKCalendarChooserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.IEKCalendarChooserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.IEKCalendarChooserDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.IEKEventEditViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.IEKEventEditViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.IEKEventEditViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.IEKEventViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.IEKEventViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:EventKitUI.IEKEventViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ExecutionPolicy.EPDeveloperTool_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExecutionPolicy.EPDeveloperTool_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExecutionPolicy.EPDeveloperTool_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExecutionPolicy.EPDeveloperTool_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExecutionPolicy.EPDeveloperTool_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExecutionPolicy.EPExecutionPolicy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExecutionPolicy.EPExecutionPolicy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExecutionPolicy.EPExecutionPolicy_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExecutionPolicy.EPExecutionPolicy_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExecutionPolicy.EPExecutionPolicy_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXAppExtensionBrowserViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXAppExtensionBrowserViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXAppExtensionBrowserViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXAppExtensionBrowserViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXAppExtensionBrowserViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.EXHostViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.IEXHostViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.IEXHostViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExtensionKit.IEXHostViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory__EAAccessory._EAAccessoryDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory__EAAccessory._EAAccessoryDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory__EAAccessory._EAAccessoryDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory__EAAccessory._EAAccessoryDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory__EAAccessory._EAAccessoryDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory__EAWiFiUnconfiguredAccessoryBrowser._EAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory__EAWiFiUnconfiguredAccessoryBrowser._EAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory__EAWiFiUnconfiguredAccessoryBrowser._EAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory__EAWiFiUnconfiguredAccessoryBrowser._EAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory__EAWiFiUnconfiguredAccessoryBrowser._EAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAAccessoryManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EASession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EASession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EASession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EASession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EASession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowser_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowser_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowser_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowser_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowser_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.EAWiFiUnconfiguredAccessoryBrowserDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.IEAAccessoryDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.IEAAccessoryDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.IEAAccessoryDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.IEAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.IEAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ExternalAccessory.IEAWiFiUnconfiguredAccessoryBrowserDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSCache._NSCacheDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSCache._NSCacheDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSCache._NSCacheDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSCache._NSCacheDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSCache._NSCacheDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSKeyedArchiver._NSKeyedArchiverDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSKeyedArchiver._NSKeyedArchiverDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSKeyedArchiver._NSKeyedArchiverDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSKeyedArchiver._NSKeyedArchiverDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSKeyedArchiver._NSKeyedArchiverDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSKeyedUnarchiver._NSKeyedUnarchiverDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSKeyedUnarchiver._NSKeyedUnarchiverDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSKeyedUnarchiver._NSKeyedUnarchiverDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSKeyedUnarchiver._NSKeyedUnarchiverDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSKeyedUnarchiver._NSKeyedUnarchiverDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSMetadataQuery._NSMetadataQueryDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSMetadataQuery._NSMetadataQueryDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSMetadataQuery._NSMetadataQueryDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSMetadataQuery._NSMetadataQueryDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSMetadataQuery._NSMetadataQueryDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSNetService._NSNetServiceDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSNetService._NSNetServiceDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSNetService._NSNetServiceDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSNetService._NSNetServiceDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSNetService._NSNetServiceDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSNetServiceBrowser._NSNetServiceBrowserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSNetServiceBrowser._NSNetServiceBrowserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSNetServiceBrowser._NSNetServiceBrowserDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSNetServiceBrowser._NSNetServiceBrowserDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSNetServiceBrowser._NSNetServiceBrowserDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.NSObject_Disposer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.Observer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.Observer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.Observer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.Observer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSObject.Observer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSStream._NSStreamDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSStream._NSStreamDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSStream._NSStreamDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSStream._NSStreamDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation__NSStream._NSStreamDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.GCPhysicalInputExtentsWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.GCPhysicalInputExtentsWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.GCPhysicalInputExtentsWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.IGCPhysicalInputExtents_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.IGCPhysicalInputExtents_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.IGCPhysicalInputExtents_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCacheDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCacheDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCacheDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCoding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCoding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCoding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCopying_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCopying_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSCopying_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSDiscardableContent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSDiscardableContent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSDiscardableContent_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSExtensionRequestHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSFileManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSFileManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSFileManagerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSFilePresenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSFilePresenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSFilePresenter_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderReading_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderReading_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderReading_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSItemProviderWriting_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSKeyedArchiverDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSKeyedArchiverDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSKeyedArchiverDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSKeyedUnarchiverDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSKeyedUnarchiverDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSKeyedUnarchiverDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSLocking_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSLocking_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSLocking_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMachPortDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMachPortDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMachPortDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMetadataQueryDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMetadataQueryDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMetadataQueryDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMutableCopying_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMutableCopying_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSMutableCopying_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSNetServiceBrowserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSNetServiceBrowserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSNetServiceBrowserDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSNetServiceDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSNetServiceDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSNetServiceDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSObjectProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSObjectProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSObjectProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSPortDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSPortDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSPortDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSPredicateValidating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSPredicateValidating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSPredicateValidating_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSProgressReporting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSProgressReporting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSProgressReporting_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSSecureCoding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSSecureCoding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSSecureCoding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSStreamDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSStreamDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSStreamDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlAuthenticationChallengeSender_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlAuthenticationChallengeSender_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlAuthenticationChallengeSender_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlConnectionDataDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlConnectionDataDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlConnectionDataDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlConnectionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlConnectionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlConnectionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlConnectionDownloadDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlConnectionDownloadDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlConnectionDownloadDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlProtocolClient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlProtocolClient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlProtocolClient_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionDataDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionDataDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionDataDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionDownloadDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionDownloadDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionDownloadDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionStreamDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionStreamDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionStreamDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionTaskDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionTaskDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionTaskDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionWebSocketDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionWebSocketDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUrlSessionWebSocketDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUserActivityDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUserActivityDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSUserActivityDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSXpcListenerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSXpcListenerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.INSXpcListenerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.InternalNSNotificationHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.InternalNSNotificationHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.InternalNSNotificationHandler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.InternalNSNotificationHandler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.InternalNSNotificationHandler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSActionDispatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSActionDispatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSActionDispatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSActionDispatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSActionDispatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAffineTransform_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAffineTransform_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAffineTransform_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAffineTransform_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAffineTransform_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleEventDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleEventDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleEventDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleEventDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleEventDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleEventManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleEventManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleEventManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleEventManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleEventManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleScript_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleScript_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleScript_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleScript_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAppleScript_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncActionDispatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncActionDispatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncActionDispatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncActionDispatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncActionDispatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncDispatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncSynchronizationContextDispatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncSynchronizationContextDispatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncSynchronizationContextDispatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncSynchronizationContextDispatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAsyncSynchronizationContextDispatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedString_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedString_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedString_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedString_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedString_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedStringMarkdownParsingOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedStringMarkdownParsingOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedStringMarkdownParsingOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedStringMarkdownParsingOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedStringMarkdownParsingOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedStringMarkdownSourcePosition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedStringMarkdownSourcePosition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedStringMarkdownSourcePosition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedStringMarkdownSourcePosition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAttributedStringMarkdownSourcePosition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSAutoreleasePool_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBlockOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBlockOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBlockOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBlockOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBlockOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBundle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBundle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBundle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBundle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBundle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBundleResourceRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBundleResourceRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBundleResourceRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBundleResourceRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSBundleResourceRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSByteCountFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSByteCountFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSByteCountFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSByteCountFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSByteCountFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCache_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCache_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCache_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCache_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCache_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCacheDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCacheDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCacheDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCacheDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCacheDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCacheDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCacheDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCacheDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCachedUrlResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCachedUrlResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCachedUrlResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCachedUrlResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCachedUrlResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCalendar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCalendar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCalendar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCalendar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCalendar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCharacterSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCharacterSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCharacterSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCharacterSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCharacterSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCoder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCoder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCoder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCoding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCoding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCoding_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCoding_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCoding_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCodingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCodingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSComparisonPredicate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSComparisonPredicate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSComparisonPredicate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSComparisonPredicate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSComparisonPredicate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCompoundPredicate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCompoundPredicate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCompoundPredicate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCompoundPredicate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCompoundPredicate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCondition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCondition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCondition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCondition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCondition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSConditionLock_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSConditionLock_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSConditionLock_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSConditionLock_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSConditionLock_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopying_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopying_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopying_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopying_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopying_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDataDetector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDataDetector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDataDetector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDataDetector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDataDetector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateComponents_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateComponents_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateComponents_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateComponents_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateComponents_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateComponentsFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateComponentsFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateComponentsFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateComponentsFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateComponentsFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateInterval_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateInterval_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateInterval_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateInterval_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateInterval_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateIntervalFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateIntervalFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateIntervalFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateIntervalFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDateIntervalFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDecimalNumber_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDecimalNumber_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDecimalNumber_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDecimalNumber_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDecimalNumber_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDictionary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDimension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDimension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDimension_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDimension_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDimension_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDirectoryEnumerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDirectoryEnumerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDirectoryEnumerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDirectoryEnumerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDirectoryEnumerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDiscardableContentWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDiscardableContentWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDiscardableContentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDispatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDispatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDispatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDispatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDispatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDistributedLock_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDistributedLock_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDistributedLock_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDistributedLock_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDistributedLock_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDistributedNotificationCenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDistributedNotificationCenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDistributedNotificationCenter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDistributedNotificationCenter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSDistributedNotificationCenter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSEnergyFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSEnergyFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSEnergyFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSEnergyFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSEnergyFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSEnumerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSEnumerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSEnumerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSEnumerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSEnumerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSError_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSError_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSError_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSError_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSError_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSException_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExceptionError_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExceptionError_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExceptionError_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExceptionError_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExceptionError_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExpression_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExpression_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExpression_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExpression_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExpression_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandling_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandling_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandling_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSExtensionRequestHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileAccessIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileAccessIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileAccessIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileAccessIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileAccessIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileCoordinator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileCoordinator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileCoordinator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileHandle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileHandle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileHandle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileHandle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileHandle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManagerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManagerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileManagerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFilePresenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFilePresenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFilePresenter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFilePresenter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFilePresenter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFilePresenterWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFilePresenterWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFilePresenterWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileProviderService_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileProviderService_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileProviderService_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileProviderService_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileProviderService_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileVersion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileVersion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileVersion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileVersion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileVersion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileWrapper_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileWrapper_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFileWrapper_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpCookie_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpCookie_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpCookie_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpCookie_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpCookie_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpCookieStorage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpCookieStorage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpCookieStorage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpCookieStorage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpCookieStorage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpUrlResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpUrlResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpUrlResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpUrlResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSHttpUrlResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIndexPath_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIndexPath_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIndexPath_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIndexPath_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIndexPath_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIndexSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIndexSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIndexSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIndexSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIndexSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInflectionRule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInflectionRule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInflectionRule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInflectionRule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInflectionRule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInflectionRuleExplicit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInflectionRuleExplicit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInflectionRuleExplicit_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInflectionRuleExplicit_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInflectionRuleExplicit_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInputStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInputStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInputStream_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInputStream_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInputStream_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInvocation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInvocation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInvocation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInvocation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSInvocation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIso8601DateFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIso8601DateFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIso8601DateFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIso8601DateFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSIso8601DateFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderReadingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSItemProviderWritingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSJsonSerialization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSJsonSerialization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSJsonSerialization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSJsonSerialization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSJsonSerialization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiverDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiverDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiverDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiverDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiverDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiverDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiverDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedArchiverDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiverDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiverDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiverDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiverDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiverDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiverDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiverDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyedUnarchiverDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyValueSharedObservers_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyValueSharedObservers_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyValueSharedObservers_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyValueSharedObservers_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyValueSharedObservers_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyValueSharedObserversSnapshot_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyValueSharedObserversSnapshot_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyValueSharedObserversSnapshot_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyValueSharedObserversSnapshot_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSKeyValueSharedObserversSnapshot_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLengthFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLengthFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLengthFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLengthFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLengthFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLinguisticTagger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLinguisticTagger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLinguisticTagger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLinguisticTagger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLinguisticTagger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSListFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSListFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSListFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSListFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSListFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLocale_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLocale_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLocale_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLocale_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLocale_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLocalizedNumberFormatRule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLocalizedNumberFormatRule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLocalizedNumberFormatRule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLocalizedNumberFormatRule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLocalizedNumberFormatRule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLock_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLock_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLock_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLock_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLock_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLockingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLockingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSLockingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPort_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPort_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPort_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPort_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPort_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPortDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPortDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPortDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPortDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPortDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPortDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPortDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMachPortDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMassFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMassFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMassFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMassFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMassFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMeasurement`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMeasurement`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMeasurement`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMeasurement`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMeasurement`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMeasurementFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMeasurementFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMeasurementFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMeasurementFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMeasurementFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryAttributeValueTuple_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryAttributeValueTuple_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryAttributeValueTuple_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryAttributeValueTuple_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryAttributeValueTuple_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryResultGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryResultGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryResultGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryResultGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMetadataQueryResultGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMethodSignature_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMethodSignature_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMethodSignature_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMethodSignature_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMethodSignature_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphology_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphology_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphology_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphology_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphology_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphologyCustomPronoun_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphologyCustomPronoun_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphologyCustomPronoun_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphologyCustomPronoun_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphologyCustomPronoun_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphologyPronoun_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphologyPronoun_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphologyPronoun_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphologyPronoun_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMorphologyPronoun_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableAttributedString_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableAttributedString_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableAttributedString_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableAttributedString_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableAttributedString_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCharacterSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCharacterSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCharacterSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCharacterSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCharacterSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopying_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopying_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopying_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopying_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopying_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableCopyingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableDictionary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableDictionary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableDictionary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableDictionary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableDictionary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableIndexSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableIndexSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableIndexSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableIndexSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableIndexSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableOrderedSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableOrderedSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableOrderedSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableOrderedSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableOrderedSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableString_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableString_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableString_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableString_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableString_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableUrlRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableUrlRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableUrlRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableUrlRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSMutableUrlRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetService_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetService_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetService_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetService_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetService_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowser_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowser_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowser_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowser_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowser_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowserDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowserDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowserDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowserDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowserDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceBrowserDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNetServiceDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotificationCenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotificationCenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotificationCenter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotificationCenter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotificationCenter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotificationQueue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotificationQueue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotificationQueue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotificationQueue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNotificationQueue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNull_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNull_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNull_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNull_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNull_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumber_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumber_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumber_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumber_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumber_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumberFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumberFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumberFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumberFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSNumberFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSObjectProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOperationQueue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOperationQueue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOperationQueue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOperationQueue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOperationQueue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOrderedSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOrderedSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOrderedSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOrderedSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOrderedSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOrthography_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOrthography_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOrthography_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOrthography_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOrthography_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOutputStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOutputStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOutputStream_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOutputStream_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSOutputStream_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPersonNameComponents_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPersonNameComponents_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPersonNameComponents_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPersonNameComponents_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPersonNameComponents_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPersonNameComponentsFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPersonNameComponentsFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPersonNameComponentsFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPersonNameComponentsFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPersonNameComponentsFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPipe_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPipe_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPipe_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPipe_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPipe_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPort_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPort_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPort_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPort_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPort_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortMessage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortMessage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortMessage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortMessage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPortMessage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicateValidating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicateValidating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicateValidating_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicateValidating_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicateValidating_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicateValidatingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicateValidatingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPredicateValidatingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPresentationIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPresentationIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPresentationIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPresentationIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPresentationIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProcessInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProcessInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProcessInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProcessInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProcessInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProgress_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProgress_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProgress_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProgress_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProgress_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProgressReportingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProgressReportingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProgressReportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPropertyListSerialization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPropertyListSerialization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPropertyListSerialization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPropertyListSerialization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPropertyListSerialization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProxy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProxy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProxy_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProxy_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSProxy_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPurgeableData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPurgeableData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPurgeableData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPurgeableData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSPurgeableData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRecursiveLock_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRecursiveLock_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRecursiveLock_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRecursiveLock_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRecursiveLock_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRegularExpression_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRegularExpression_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRegularExpression_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRegularExpression_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRegularExpression_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRelativeDateTimeFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRelativeDateTimeFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRelativeDateTimeFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRelativeDateTimeFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRelativeDateTimeFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSRunLoop_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSScriptCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSScriptCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSScriptCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSScriptCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSScriptCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSScriptCommandDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSScriptCommandDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSScriptCommandDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSScriptCommandDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSScriptCommandDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureCodingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureUnarchiveFromDataTransformer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureUnarchiveFromDataTransformer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureUnarchiveFromDataTransformer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureUnarchiveFromDataTransformer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSecureUnarchiveFromDataTransformer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSortDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSortDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSortDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSortDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSortDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStream_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStream_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStream_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStreamDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStreamDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStreamDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStreamDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStreamDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStreamDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStreamDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStreamDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSString_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStringDrawingContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStringDrawingContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStringDrawingContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStringDrawingContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSStringDrawingContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSynchronizationContextDispatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSynchronizationContextDispatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSynchronizationContextDispatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSynchronizationContextDispatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSSynchronizationContextDispatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTermOfAddress_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTermOfAddress_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTermOfAddress_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTermOfAddress_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTermOfAddress_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTextCheckingResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTextCheckingResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTextCheckingResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTextCheckingResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTextCheckingResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSThread_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSThread_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSThread_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSThread_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSThread_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimerActionDispatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimerActionDispatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimerActionDispatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimerActionDispatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimerActionDispatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimeZone_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimeZone_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimeZone_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimeZone_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSTimeZone_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUbiquitousKeyValueStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUbiquitousKeyValueStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUbiquitousKeyValueStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUbiquitousKeyValueStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUbiquitousKeyValueStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUndoManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUndoManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUndoManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUndoManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUndoManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnit_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnit_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnit_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitAcceleration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitAcceleration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitAcceleration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitAcceleration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitAcceleration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitAngle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitAngle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitAngle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitAngle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitAngle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitArea_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitArea_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitArea_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitArea_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitArea_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConcentrationMass_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConcentrationMass_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConcentrationMass_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConcentrationMass_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConcentrationMass_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConverter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConverter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConverter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConverter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConverter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConverterLinear_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConverterLinear_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConverterLinear_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConverterLinear_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitConverterLinear_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitDispersion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitDispersion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitDispersion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitDispersion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitDispersion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitDuration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitDuration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitDuration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitDuration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitDuration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricCharge_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricCharge_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricCharge_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricCharge_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricCharge_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricCurrent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricCurrent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricCurrent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricCurrent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricCurrent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricPotentialDifference_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricPotentialDifference_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricPotentialDifference_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricPotentialDifference_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricPotentialDifference_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricResistance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricResistance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricResistance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricResistance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitElectricResistance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitEnergy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitEnergy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitEnergy_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitEnergy_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitEnergy_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitFrequency_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitFrequency_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitFrequency_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitFrequency_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitFrequency_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitFuelEfficiency_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitFuelEfficiency_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitFuelEfficiency_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitFuelEfficiency_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitFuelEfficiency_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitIlluminance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitIlluminance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitIlluminance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitIlluminance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitIlluminance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitInformationStorage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitInformationStorage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitInformationStorage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitInformationStorage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitInformationStorage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitLength_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitLength_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitLength_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitLength_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitLength_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitMass_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitMass_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitMass_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitMass_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitMass_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitPower_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitPower_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitPower_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitPower_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitPower_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitPressure_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitPressure_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitPressure_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitPressure_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitPressure_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitSpeed_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitSpeed_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitSpeed_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitSpeed_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitSpeed_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitTemperature_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitTemperature_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitTemperature_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitTemperature_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitTemperature_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitVolume_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitVolume_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitVolume_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitVolume_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUnitVolume_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlAuthenticationChallenge_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlAuthenticationChallenge_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlAuthenticationChallenge_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlAuthenticationChallenge_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlAuthenticationChallenge_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlAuthenticationChallengeSenderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlAuthenticationChallengeSenderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlAuthenticationChallengeSenderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCache_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCache_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCache_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCache_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCache_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlComponents_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlComponents_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlComponents_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlComponents_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlComponents_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDataDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDataDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDataDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDataDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDataDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDataDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDataDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDataDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDownloadDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDownloadDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDownloadDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDownloadDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDownloadDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDownloadDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDownloadDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlConnectionDownloadDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCredential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCredential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCredential_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCredential_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCredential_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCredentialStorage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCredentialStorage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCredentialStorage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCredentialStorage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlCredentialStorage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtectionSpace_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtectionSpace_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtectionSpace_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtectionSpace_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtectionSpace_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtocol_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtocol_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtocol_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtocolClientWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtocolClientWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlProtocolClientWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlQueryItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlQueryItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlQueryItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlQueryItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlQueryItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDataTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionDownloadTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionStreamTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskMetrics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskMetrics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskMetrics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskMetrics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskMetrics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskTransactionMetrics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskTransactionMetrics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskTransactionMetrics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskTransactionMetrics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionTaskTransactionMetrics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionUploadTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionUploadTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionUploadTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionUploadTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionUploadTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketMessage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketMessage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketMessage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketMessage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketMessage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUrlSessionWebSocketTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivityDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivityDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivityDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivityDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivityDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivityDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivityDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserActivityDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserDefaults_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserDefaults_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserDefaults_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserDefaults_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUserDefaults_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUuid_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUuid_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUuid_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUuid_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSUuid_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSValue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSValue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSValue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSValue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSValue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSValueTransformer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSValueTransformer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSValueTransformer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSValueTransformer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSValueTransformer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcConnection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcConnection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcConnection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcConnection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcConnection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcInterface_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcInterface_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcInterface_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcInterface_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcInterface_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListener_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListener_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListener_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerEndpoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerEndpoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerEndpoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerEndpoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSXpcListenerEndpoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSZone_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSZone_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Foundation.NSZone_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCAxis2DInputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCAxis2DInputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCAxis2DInputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCAxisElementWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCAxisElementWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCAxisElementWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCAxisInputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCAxisInputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCAxisInputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCButtonElementWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCButtonElementWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCButtonElementWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCColor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCColor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCColor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCColor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCColor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerAxisInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerAxisInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerAxisInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerAxisInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerAxisInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerButtonInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerButtonInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerButtonInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerButtonInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerButtonInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerDirectionPad_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerDirectionPad_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerDirectionPad_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerDirectionPad_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerDirectionPad_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerElement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerElement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerElement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerInputState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerInputState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerInputState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerInputState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerInputState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerLiveInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerLiveInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerLiveInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerLiveInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerLiveInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerTouchpad_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerTouchpad_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerTouchpad_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerTouchpad_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCControllerTouchpad_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceBattery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceBattery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceBattery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceBattery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceBattery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceCursor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceCursor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceCursor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceCursor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceCursor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceHaptics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceHaptics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceHaptics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceHaptics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceHaptics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceLight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceLight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceLight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceLight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceLight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDevicePhysicalInputStateDiffWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDevicePhysicalInputStateDiffWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDevicePhysicalInputStateDiffWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDevicePhysicalInputStateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDevicePhysicalInputStateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDevicePhysicalInputStateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDevicePhysicalInputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDevicePhysicalInputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDevicePhysicalInputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDeviceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDirectionalGamepad_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDirectionalGamepad_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDirectionalGamepad_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDirectionalGamepad_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDirectionalGamepad_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDirectionPadElementWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDirectionPadElementWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDirectionPadElementWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualSenseAdaptiveTrigger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualSenseAdaptiveTrigger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualSenseAdaptiveTrigger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualSenseAdaptiveTrigger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualSenseAdaptiveTrigger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualSenseGamepad_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualSenseGamepad_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualSenseGamepad_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualSenseGamepad_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualSenseGamepad_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualShockGamepad_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualShockGamepad_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualShockGamepad_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualShockGamepad_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCDualShockGamepad_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCEventInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCEventInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCEventInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCEventInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCEventInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCEventViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCEventViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCEventViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCEventViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCEventViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCExtendedGamepad_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCExtendedGamepad_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCExtendedGamepad_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCExtendedGamepad_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCExtendedGamepad_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCExtendedGamepadSnapshot_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCExtendedGamepadSnapshot_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCExtendedGamepadSnapshot_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCExtendedGamepadSnapshot_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCExtendedGamepadSnapshot_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGamepad_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGamepad_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGamepad_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGamepad_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGamepad_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGamepadSnapshot_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGamepadSnapshot_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGamepadSnapshot_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGamepadSnapshot_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGamepadSnapshot_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGearShifterElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGearShifterElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGearShifterElement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGearShifterElement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCGearShifterElement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCKeyboard_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCKeyboard_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCKeyboard_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCKeyboard_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCKeyboard_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCKeyboardInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCKeyboardInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCKeyboardInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCKeyboardInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCKeyboardInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCLinearInputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCLinearInputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCLinearInputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMicroGamepad_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMicroGamepad_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMicroGamepad_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMicroGamepad_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMicroGamepad_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMicroGamepadSnapshot_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMicroGamepadSnapshot_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMicroGamepadSnapshot_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMicroGamepadSnapshot_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMicroGamepadSnapshot_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMotion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMotion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMotion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMotion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMotion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMouse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMouse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMouse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMouse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMouse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMouseInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMouseInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMouseInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMouseInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCMouseInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputElementCollection`2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputElementCollection`2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputElementCollection`2_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputElementCollection`2_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputElementCollection`2_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputElementWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputElementWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputElementWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputProfile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputProfile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputProfile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputProfile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputProfile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPhysicalInputSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPressedStateInputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPressedStateInputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCPressedStateInputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheelInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheelInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheelInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheelInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheelInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheelInputState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheelInputState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheelInputState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheelInputState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRacingWheelInputState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRelativeInputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRelativeInputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCRelativeInputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCSteeringWheelElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCSteeringWheelElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCSteeringWheelElement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCSteeringWheelElement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCSteeringWheelElement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCSwitchElementWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCSwitchElementWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCSwitchElementWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCSwitchPositionInputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCSwitchPositionInputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCSwitchPositionInputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCTouchedStateInputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCTouchedStateInputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCTouchedStateInputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualControllerConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualControllerConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualControllerConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualControllerConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualControllerConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualControllerElementConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualControllerElementConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualControllerElementConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualControllerElementConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCVirtualControllerElementConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCXboxGamepad_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCXboxGamepad_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCXboxGamepad_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCXboxGamepad_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.GCXboxGamepad_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCAxis2DInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCAxis2DInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCAxis2DInput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCAxisElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCAxisElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCAxisElement_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCAxisInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCAxisInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCAxisInput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCButtonElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCButtonElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCButtonElement_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevice_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevicePhysicalInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevicePhysicalInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevicePhysicalInput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevicePhysicalInputState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevicePhysicalInputState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevicePhysicalInputState_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevicePhysicalInputStateDiff_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevicePhysicalInputStateDiff_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDevicePhysicalInputStateDiff_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDirectionPadElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDirectionPadElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCDirectionPadElement_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCLinearInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCLinearInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCLinearInput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCPhysicalInputElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCPhysicalInputElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCPhysicalInputElement_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCPhysicalInputSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCPhysicalInputSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCPhysicalInputSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCPressedStateInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCPressedStateInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCPressedStateInput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCRelativeInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCRelativeInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCRelativeInput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCSwitchElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCSwitchElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCSwitchElement_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCSwitchPositionInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCSwitchPositionInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCSwitchPositionInput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCTouchedStateInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCTouchedStateInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameController.IGCTouchedStateInput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKChallengeEventHandler._GKChallengeEventHandlerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKChallengeEventHandler._GKChallengeEventHandlerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKChallengeEventHandler._GKChallengeEventHandlerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKChallengeEventHandler._GKChallengeEventHandlerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKChallengeEventHandler._GKChallengeEventHandlerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKGameCenterViewController._GKGameCenterControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKGameCenterViewController._GKGameCenterControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKGameCenterViewController._GKGameCenterControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKGameCenterViewController._GKGameCenterControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKGameCenterViewController._GKGameCenterControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKMatch._GKMatchDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKMatch._GKMatchDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKMatch._GKMatchDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKMatch._GKMatchDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKMatch._GKMatchDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKMatchmakerViewController._GKMatchmakerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKMatchmakerViewController._GKMatchmakerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKMatchmakerViewController._GKMatchmakerViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKMatchmakerViewController._GKMatchmakerViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKMatchmakerViewController._GKMatchmakerViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKSession.ReceiverObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKSession.ReceiverObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKSession.ReceiverObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKSession.ReceiverObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKSession.ReceiverObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit__GKTurnBasedMatchmakerViewController.GKTurnBasedMatchmakerViewControllerAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAccessPoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAccessPoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAccessPoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAccessPoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAccessPoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievementChallenge_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievementChallenge_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievementChallenge_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievementChallenge_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievementChallenge_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievementDescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievementDescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievementDescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievementDescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKAchievementDescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKBasePlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKBasePlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKBasePlayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKBasePlayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKBasePlayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallenge_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallenge_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallenge_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallenge_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallenge_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandlerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandlerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandlerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandlerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandlerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandlerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandlerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeEventHandlerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeListener_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeListener_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeListener_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeListenerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeListenerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKChallengeListenerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKCloudPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKCloudPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKCloudPlayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKCloudPlayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKCloudPlayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivityDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivityDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivityDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivityDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivityDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivityListenerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivityListenerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameActivityListenerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameCenterViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameSessionEventListenerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameSessionEventListenerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKGameSessionEventListenerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInvite_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInvite_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInvite_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInvite_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInvite_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInviteEventListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInviteEventListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInviteEventListener_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInviteEventListener_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInviteEventListener_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInviteEventListenerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInviteEventListenerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKInviteEventListenerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboard_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboard_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboard_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboard_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboard_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardEntry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardEntry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardEntry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardEntry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardEntry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardScore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardScore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardScore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardScore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardScore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLeaderboardSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayerListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayerListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayerListener_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayerListener_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayerListener_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayerListenerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayerListenerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKLocalPlayerListenerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchedPlayers_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchedPlayers_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchedPlayers_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchedPlayers_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchedPlayers_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmaker_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmaker_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmaker_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmaker_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmaker_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchmakerViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKMatchRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKNotificationBanner_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKNotificationBanner_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKNotificationBanner_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKNotificationBanner_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKNotificationBanner_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPeerPickerController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPeerPickerController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPeerPickerController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPeerPickerController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPeerPickerController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPeerPickerControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPeerPickerControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPeerPickerControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPeerPickerControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPeerPickerControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPlayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPlayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKPlayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGame_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGame_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGame_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGame_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGame_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGameListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGameListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGameListener_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGameListener_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGameListener_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGameListenerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGameListenerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSavedGameListenerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKScore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKScore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKScore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKScore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKScore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKScoreChallenge_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKScoreChallenge_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKScoreChallenge_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKScoreChallenge_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKScoreChallenge_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandlerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandlerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandlerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandlerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandlerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandlerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandlerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventHandlerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventListener_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventListener_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventListener_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventListenerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventListenerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedEventListenerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedExchange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedExchange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedExchange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedExchange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedExchange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedExchangeReply_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedExchangeReply_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedExchangeReply_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedExchangeReply_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedExchangeReply_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedMatchmakerViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedParticipant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedParticipant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedParticipant_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedParticipant_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKTurnBasedParticipant_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChat_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChat_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChat_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChat_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChat_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatClient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatClient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatClient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatClient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatClient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatClientWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatClientWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatClientWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatService_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatService_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatService_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatService_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.GKVoiceChatService_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKChallengeEventHandlerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKChallengeEventHandlerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKChallengeEventHandlerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKChallengeListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKChallengeListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKChallengeListener_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKGameActivityListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKGameActivityListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKGameActivityListener_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKGameCenterControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKGameCenterControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKGameCenterControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKGameSessionEventListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKGameSessionEventListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKGameSessionEventListener_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKInviteEventListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKInviteEventListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKInviteEventListener_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKLocalPlayerListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKLocalPlayerListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKLocalPlayerListener_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKMatchDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKMatchDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKMatchDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKMatchmakerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKMatchmakerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKMatchmakerViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKSavedGameListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKSavedGameListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKSavedGameListener_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKTurnBasedEventHandlerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKTurnBasedEventHandlerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKTurnBasedEventHandlerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKTurnBasedEventListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKTurnBasedEventListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKTurnBasedEventListener_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKTurnBasedMatchmakerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKTurnBasedMatchmakerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKTurnBasedMatchmakerViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKVoiceChatClient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKVoiceChatClient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.IGKVoiceChatClient_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.Mono_GKSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.Mono_GKSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.Mono_GKSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.Mono_GKSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameKit.Mono_GKSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent2D_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent2D_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent2D_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent2D_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent2D_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent3D_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent3D_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent3D_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent3D_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgent3D_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgentDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgentDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgentDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgentDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgentDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgentDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgentDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKAgentDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKARC4RandomSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKARC4RandomSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKARC4RandomSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKARC4RandomSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKARC4RandomSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKBillowNoiseSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKBillowNoiseSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKBillowNoiseSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKBillowNoiseSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKBillowNoiseSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCheckerboardNoiseSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCheckerboardNoiseSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCheckerboardNoiseSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCheckerboardNoiseSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCheckerboardNoiseSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCircleObstacle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCircleObstacle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCircleObstacle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCircleObstacle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCircleObstacle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCoherentNoiseSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCoherentNoiseSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCoherentNoiseSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCoherentNoiseSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCoherentNoiseSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKComponent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKComponent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKComponent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKComponentSystem`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKComponentSystem`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKComponentSystem`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKComponentSystem`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKComponentSystem`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCompositeBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCompositeBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCompositeBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCompositeBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCompositeBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKConstantNoiseSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKConstantNoiseSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKConstantNoiseSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKConstantNoiseSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKConstantNoiseSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCylindersNoiseSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCylindersNoiseSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCylindersNoiseSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCylindersNoiseSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKCylindersNoiseSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKDecisionNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKDecisionNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKDecisionNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKDecisionNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKDecisionNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKDecisionTree_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKDecisionTree_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKDecisionTree_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKDecisionTree_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKDecisionTree_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKEntity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKEntity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKEntity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKEntity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKEntity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGameModelPlayerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGameModelPlayerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGameModelPlayerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGameModelUpdateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGameModelUpdateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGameModelUpdateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGameModelWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGameModelWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGameModelWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGaussianDistribution_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGaussianDistribution_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGaussianDistribution_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGaussianDistribution_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGaussianDistribution_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGoal_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGoal_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGoal_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGoal_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGoal_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode2D_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode2D_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode2D_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode2D_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode2D_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode3D_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode3D_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode3D_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode3D_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGraphNode3D_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGridGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGridGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGridGraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGridGraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGridGraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGridGraphNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGridGraphNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGridGraphNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGridGraphNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKGridGraphNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKLinearCongruentialRandomSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKLinearCongruentialRandomSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKLinearCongruentialRandomSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKLinearCongruentialRandomSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKLinearCongruentialRandomSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMersenneTwisterRandomSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMersenneTwisterRandomSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMersenneTwisterRandomSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMersenneTwisterRandomSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMersenneTwisterRandomSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMeshGraph`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMeshGraph`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMeshGraph`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMeshGraph`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMeshGraph`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMinMaxStrategist_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMinMaxStrategist_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMinMaxStrategist_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMinMaxStrategist_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMinMaxStrategist_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMonteCarloStrategist_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMonteCarloStrategist_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMonteCarloStrategist_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMonteCarloStrategist_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKMonteCarloStrategist_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoise_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoise_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoise_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoise_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoise_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoiseMap_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoiseMap_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoiseMap_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoiseMap_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoiseMap_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoiseSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoiseSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoiseSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoiseSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNoiseSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNSPredicateRule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNSPredicateRule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNSPredicateRule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNSPredicateRule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKNSPredicateRule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKObstacle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKObstacle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKObstacle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKObstacle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKObstacle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKObstacleGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKObstacleGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKObstacleGraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKObstacleGraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKObstacleGraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKOctree`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKOctree`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKOctree`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKOctree`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKOctree`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKOctreeNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKOctreeNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKOctreeNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKOctreeNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKOctreeNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPath_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPath_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPath_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPath_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPath_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPerlinNoiseSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPerlinNoiseSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPerlinNoiseSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPerlinNoiseSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPerlinNoiseSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPolygonObstacle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPolygonObstacle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPolygonObstacle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPolygonObstacle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKPolygonObstacle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKQuadTree_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKQuadTree_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKQuadTree_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKQuadTree_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKQuadTree_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKQuadTreeNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKQuadTreeNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKQuadTreeNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKQuadTreeNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKQuadTreeNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomDistribution_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomDistribution_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomDistribution_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomDistribution_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomDistribution_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRandomWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRidgedNoiseSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRidgedNoiseSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRidgedNoiseSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRidgedNoiseSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRidgedNoiseSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRTree`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRTree`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRTree`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRTree`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRTree`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRuleSystem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRuleSystem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRuleSystem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRuleSystem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKRuleSystem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKScene_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKScene_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKScene_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKScene_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKScene_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSceneRootNodeTypeWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSceneRootNodeTypeWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSceneRootNodeTypeWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSCNNodeComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSCNNodeComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSCNNodeComponent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSCNNodeComponent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSCNNodeComponent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKShuffledDistribution_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKShuffledDistribution_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKShuffledDistribution_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKShuffledDistribution_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKShuffledDistribution_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSKNodeComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSKNodeComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSKNodeComponent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSKNodeComponent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSKNodeComponent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSphereObstacle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSphereObstacle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSphereObstacle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSphereObstacle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSphereObstacle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSpheresNoiseSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSpheresNoiseSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSpheresNoiseSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSpheresNoiseSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKSpheresNoiseSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKStateMachine_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKStateMachine_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKStateMachine_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKStateMachine_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKStateMachine_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKStrategistWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKStrategistWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKStrategistWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKVoronoiNoiseSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKVoronoiNoiseSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKVoronoiNoiseSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKVoronoiNoiseSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.GKVoronoiNoiseSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKAgentDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKAgentDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKAgentDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKGameModel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKGameModel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKGameModel_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKGameModelPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKGameModelPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKGameModelPlayer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKGameModelUpdate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKGameModelUpdate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKGameModelUpdate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKRandom_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKRandom_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKRandom_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKSceneRootNodeType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKSceneRootNodeType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKSceneRootNodeType_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKStrategist_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKStrategist_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameplayKit.IGKStrategist_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectoryState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectoryState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectoryState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectoryState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectoryState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectoryVersion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectoryVersion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectoryVersion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectoryVersion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:GameSave.GSSyncedDirectoryVersion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivityMoveModeObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivityMoveModeObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivityMoveModeObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivityMoveModeObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivityMoveModeObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummaryQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummaryQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummaryQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummaryQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummaryQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummaryType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummaryType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummaryType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummaryType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKActivitySummaryType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAnchoredObjectQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAnchoredObjectQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAnchoredObjectQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAnchoredObjectQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAnchoredObjectQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAttachment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAttachment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAttachment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAttachment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAttachment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAttachmentStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAttachmentStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAttachmentStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAttachmentStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAttachmentStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSampleType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSampleType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSampleType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSampleType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSampleType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityPoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityPoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityPoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityPoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityPoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityPointClampingRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityPointClampingRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityPointClampingRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityPointClampingRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityPointClampingRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityTest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityTest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityTest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityTest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKAudiogramSensitivityTest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKBiologicalSexObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKBiologicalSexObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKBiologicalSexObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKBiologicalSexObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKBiologicalSexObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKBloodTypeObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKBloodTypeObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKBloodTypeObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKBloodTypeObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKBloodTypeObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCategorySample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCategorySample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCategorySample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCategorySample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCategorySample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCategoryType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCategoryType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCategoryType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCategoryType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCategoryType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCdaDocument_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCdaDocument_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCdaDocument_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCdaDocument_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCdaDocument_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCdaDocumentSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCdaDocumentSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCdaDocumentSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCdaDocumentSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCdaDocumentSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCharacteristicType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCharacteristicType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCharacteristicType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCharacteristicType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCharacteristicType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalCoding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalCoding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalCoding_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalCoding_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalCoding_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKClinicalType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKContactsLensSpecification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKContactsLensSpecification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKContactsLensSpecification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKContactsLensSpecification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKContactsLensSpecification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKContactsPrescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKContactsPrescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKContactsPrescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKContactsPrescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKContactsPrescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelationQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelationQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelationQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelationQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelationQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelationType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelationType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelationType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelationType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCorrelationType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCumulativeQuantitySample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCumulativeQuantitySample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCumulativeQuantitySample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCumulativeQuantitySample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCumulativeQuantitySample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCumulativeQuantitySeriesSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCumulativeQuantitySeriesSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCumulativeQuantitySeriesSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCumulativeQuantitySeriesSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKCumulativeQuantitySeriesSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDeletedObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDeletedObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDeletedObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDeletedObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDeletedObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDiscreteQuantitySample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDiscreteQuantitySample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDiscreteQuantitySample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDiscreteQuantitySample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDiscreteQuantitySample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKDocumentType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogram_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogram_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogram_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogram_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogram_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramVoltageMeasurement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramVoltageMeasurement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramVoltageMeasurement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramVoltageMeasurement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKElectrocardiogramVoltageMeasurement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFhirResource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFhirResource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFhirResource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFhirResource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFhirResource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFhirVersion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFhirVersion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFhirVersion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFhirVersion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFhirVersion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFitzpatrickSkinTypeObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFitzpatrickSkinTypeObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFitzpatrickSkinTypeObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFitzpatrickSkinTypeObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKFitzpatrickSkinTypeObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGad7Assessment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGad7Assessment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGad7Assessment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGad7Assessment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGad7Assessment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGlassesLensSpecification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGlassesLensSpecification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGlassesLensSpecification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGlassesLensSpecification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGlassesLensSpecification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGlassesPrescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGlassesPrescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGlassesPrescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGlassesPrescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKGlassesPrescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHealthConceptIdentifier_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHealthConceptIdentifier_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHealthConceptIdentifier_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHealthConceptIdentifier_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHealthConceptIdentifier_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHealthStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHealthStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHealthStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHealthStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHealthStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesBuilder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesBuilder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesBuilder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesBuilder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesBuilder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKHeartbeatSeriesSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLensSpecification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLensSpecification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLensSpecification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLensSpecification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLensSpecification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilderDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilderDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilderDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilderDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilderDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutBuilderDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKLiveWorkoutDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationConcept_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationConcept_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationConcept_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationConcept_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationConcept_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationDoseEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationDoseEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationDoseEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationDoseEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationDoseEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationDoseEventType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationDoseEventType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationDoseEventType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationDoseEventType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKMedicationDoseEventType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObjectType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObjectType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObjectType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObjectType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObjectType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObserverQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObserverQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObserverQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObserverQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKObserverQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKPhq9Assessment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKPhq9Assessment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKPhq9Assessment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKPhq9Assessment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKPhq9Assessment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKPrescriptionType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKPrescriptionType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKPrescriptionType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKPrescriptionType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKPrescriptionType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySeriesSampleBuilder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySeriesSampleBuilder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySeriesSampleBuilder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySeriesSampleBuilder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySeriesSampleBuilder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySeriesSampleQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySeriesSampleQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySeriesSampleQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySeriesSampleQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantitySeriesSampleQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantityType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantityType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantityType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantityType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuantityType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQueryAnchor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQueryAnchor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQueryAnchor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQueryAnchor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQueryAnchor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQueryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQueryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQueryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQueryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKQueryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSampleQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSampleQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSampleQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSampleQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSampleQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSampleType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSampleType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSampleType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSampleType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSampleType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKScoredAssessment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKScoredAssessment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKScoredAssessment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKScoredAssessment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKScoredAssessment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKScoredAssessmentType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKScoredAssessmentType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKScoredAssessmentType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKScoredAssessmentType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKScoredAssessmentType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesBuilder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesBuilder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesBuilder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesBuilder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesBuilder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSeriesType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSourceQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSourceQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSourceQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSourceQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSourceQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSourceRevision_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSourceRevision_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSourceRevision_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSourceRevision_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKSourceRevision_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStateOfMind_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStateOfMind_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStateOfMind_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStateOfMind_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStateOfMind_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStateOfMindType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStateOfMindType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStateOfMindType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStateOfMindType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStateOfMindType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatistics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatistics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatistics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatistics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatistics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsCollection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsCollection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsCollection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsCollection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsCollection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsCollectionQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsCollectionQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsCollectionQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsCollectionQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsCollectionQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKStatisticsQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUnit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUnit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUnit_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUnit_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUnit_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedicationQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedicationQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedicationQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedicationQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedicationQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedicationType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedicationType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedicationType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedicationType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKUserAnnotatedMedicationType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecordQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecordQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecordQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecordQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecordQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecordSubject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecordSubject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecordSubject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecordSubject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVerifiableClinicalRecordSubject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVisionPrescription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVisionPrescription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVisionPrescription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVisionPrescription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVisionPrescription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVisionPrism_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVisionPrism_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVisionPrism_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVisionPrism_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKVisionPrism_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWheelchairUseObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWheelchairUseObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWheelchairUseObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWheelchairUseObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWheelchairUseObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutActivity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutActivity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutActivity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutActivity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutActivity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutBuilder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutBuilder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutBuilder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutBuilder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutBuilder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEffortRelationship_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEffortRelationship_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEffortRelationship_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEffortRelationship_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEffortRelationship_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEffortRelationshipQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEffortRelationshipQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEffortRelationshipQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEffortRelationshipQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEffortRelationshipQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRoute_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRoute_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRoute_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRoute_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRoute_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRouteBuilder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRouteBuilder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRouteBuilder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRouteBuilder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRouteBuilder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRouteQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRouteQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRouteQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRouteQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutRouteQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.HKWorkoutType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.IHKLiveWorkoutBuilderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.IHKLiveWorkoutBuilderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.IHKLiveWorkoutBuilderDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.IHKWorkoutSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.IHKWorkoutSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKit.IHKWorkoutSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKitUI__HKActivityRingView.HKActivityRingViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKitUI__HKActivityRingView.HKActivityRingViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKitUI__HKActivityRingView.HKActivityRingViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKitUI__HKActivityRingView.HKActivityRingViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKitUI__HKActivityRingView.HKActivityRingViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKitUI.HKActivityRingView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKitUI.HKActivityRingView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKitUI.HKActivityRingView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKitUI.HKActivityRingView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HealthKitUI.HKActivityRingView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMAccessory._HMAccessoryDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMAccessory._HMAccessoryDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMAccessory._HMAccessoryDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMAccessory._HMAccessoryDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMAccessory._HMAccessoryDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMCameraView.HMCameraViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMCameraView.HMCameraViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMCameraView.HMCameraViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMCameraView.HMCameraViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMCameraView.HMCameraViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMHome._HMHomeDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMHome._HMHomeDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMHome._HMHomeDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMHome._HMHomeDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMHome._HMHomeDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMHomeManager._HMHomeManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMHomeManager._HMHomeManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMHomeManager._HMHomeManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMHomeManager._HMHomeManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit__HMHomeManager._HMHomeManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryCategory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryCategory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryCategory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryCategory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryCategory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryProfile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryProfile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryProfile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryProfile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAccessoryProfile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMActionSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMActionSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMActionSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMActionSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMActionSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCalendarEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCalendarEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCalendarEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCalendarEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCalendarEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraAudioControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraAudioControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraAudioControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraAudioControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraAudioControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraProfile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraProfile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraProfile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraProfile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraProfile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSettingsControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSettingsControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSettingsControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSettingsControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSettingsControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshot_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshot_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshot_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshot_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshot_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControlDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControlDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControlDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControlDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControlDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControlDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControlDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSnapshotControlDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStream_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStream_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStream_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControlDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControlDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControlDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControlDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControlDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControlDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControlDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraStreamControlDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCameraView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicThresholdRangeEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicThresholdRangeEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicThresholdRangeEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicThresholdRangeEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicThresholdRangeEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicWriteAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicWriteAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicWriteAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicWriteAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMCharacteristicWriteAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMDurationEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMDurationEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMDurationEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMDurationEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMDurationEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMEventTrigger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMEventTrigger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMEventTrigger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMEventTrigger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMEventTrigger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHome_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHome_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHome_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHome_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHome_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeAccessControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeAccessControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeAccessControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeAccessControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeAccessControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManagerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManagerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMHomeManagerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMLocationEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMLocationEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMLocationEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMLocationEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMLocationEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCalendarEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCalendarEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCalendarEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCalendarEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCalendarEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCharacteristicEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCharacteristicEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCharacteristicEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCharacteristicEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCharacteristicEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCharacteristicThresholdRangeEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCharacteristicThresholdRangeEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCharacteristicThresholdRangeEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCharacteristicThresholdRangeEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableCharacteristicThresholdRangeEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableDurationEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableDurationEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableDurationEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableDurationEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableDurationEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableLocationEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableLocationEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableLocationEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableLocationEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableLocationEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutablePresenceEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutablePresenceEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutablePresenceEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutablePresenceEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutablePresenceEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableSignificantTimeEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableSignificantTimeEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableSignificantTimeEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableSignificantTimeEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMMutableSignificantTimeEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfileDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfileDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfileDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfileDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfileDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfileDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfileDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNetworkConfigurationProfileDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNumberRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNumberRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNumberRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNumberRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMNumberRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMPresenceEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMPresenceEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMPresenceEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMPresenceEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMPresenceEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMRoom_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMRoom_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMRoom_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMRoom_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMRoom_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMService_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMService_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMService_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMService_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMService_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMServiceGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMServiceGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMServiceGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMServiceGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMServiceGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMSignificantTimeEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMSignificantTimeEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMSignificantTimeEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMSignificantTimeEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMSignificantTimeEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTimeEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTimeEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTimeEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTimeEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTimeEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTimerTrigger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTimerTrigger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTimerTrigger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTimerTrigger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTimerTrigger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTrigger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTrigger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTrigger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTrigger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMTrigger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMUser_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMUser_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMUser_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMUser_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMUser_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMZone_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMZone_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMZone_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMZone_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.HMZone_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMAccessoryDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMAccessoryDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMAccessoryDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMCameraSnapshotControlDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMCameraSnapshotControlDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMCameraSnapshotControlDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMCameraStreamControlDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMCameraStreamControlDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMCameraStreamControlDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMHomeDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMHomeDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMHomeDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMHomeManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMHomeManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMHomeManagerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMNetworkConfigurationProfileDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMNetworkConfigurationProfileDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:HomeKit.IHMNetworkConfigurationProfileDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.IILMessageFilterCapabilitiesQueryHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.IILMessageFilterCapabilitiesQueryHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.IILMessageFilterCapabilitiesQueryHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.IILMessageFilterQueryHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.IILMessageFilterQueryHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.IILMessageFilterQueryHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCallClassificationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCallClassificationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCallClassificationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCallClassificationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCallClassificationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCallCommunication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCallCommunication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCallCommunication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCallCommunication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCallCommunication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILClassificationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILClassificationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILClassificationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILClassificationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILClassificationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILClassificationResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILClassificationResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILClassificationResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILClassificationResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILClassificationResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCommunication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCommunication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCommunication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCommunication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILCommunication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageClassificationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageClassificationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageClassificationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageClassificationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageClassificationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageCommunication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageCommunication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageCommunication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageCommunication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageCommunication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterCapabilitiesQueryResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterExtension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterExtension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterExtension_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterExtension_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterExtension_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterExtensionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterExtensionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterExtensionContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterExtensionContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterExtensionContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILMessageFilterQueryResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILNetworkResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILNetworkResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILNetworkResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILNetworkResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookup.ILNetworkResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookupUI.ILClassificationUIExtensionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookupUI.ILClassificationUIExtensionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookupUI.ILClassificationUIExtensionContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookupUI.ILClassificationUIExtensionContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookupUI.ILClassificationUIExtensionContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookupUI.ILClassificationUIExtensionViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookupUI.ILClassificationUIExtensionViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookupUI.ILClassificationUIExtensionViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookupUI.ILClassificationUIExtensionViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IdentityLookupUI.ILClassificationUIExtensionViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageDestination_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageDestination_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageDestination_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageMetadata_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageMetadataTag_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageMetadataTag_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageMetadataTag_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ImageIO.CGImageSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINActivateCarSignalIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINActivateCarSignalIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINActivateCarSignalIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAddMediaIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAddMediaIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAddMediaIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAddTasksIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAddTasksIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAddTasksIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAnswerCallIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAnswerCallIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAnswerCallIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAppendToNoteIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAppendToNoteIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINAppendToNoteIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINBookRestaurantReservationIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINBookRestaurantReservationIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINBookRestaurantReservationIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCallsDomainHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCallsDomainHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCallsDomainHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCancelRideIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCancelRideIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCancelRideIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCancelWorkoutIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCancelWorkoutIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCancelWorkoutIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCarCommandsDomainHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCarCommandsDomainHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCarCommandsDomainHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCarPlayDomainHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCarPlayDomainHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCarPlayDomainHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCreateNoteIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCreateNoteIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCreateNoteIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCreateTaskListIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCreateTaskListIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINCreateTaskListIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINDeleteTasksIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINDeleteTasksIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINDeleteTasksIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINEditMessageIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINEditMessageIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINEditMessageIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINEndWorkoutIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINEndWorkoutIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINEndWorkoutIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetAvailableRestaurantReservationBookingDefaultsIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetAvailableRestaurantReservationBookingsIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetCarLockStatusIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetCarLockStatusIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetCarLockStatusIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetCarPowerLevelStatusIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetCarPowerLevelStatusIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetCarPowerLevelStatusIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetCarPowerLevelStatusIntentResponseObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetCarPowerLevelStatusIntentResponseObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetCarPowerLevelStatusIntentResponseObserver_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetRestaurantGuestIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetRestaurantGuestIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetRestaurantGuestIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetRideStatusIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetRideStatusIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetRideStatusIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetRideStatusIntentResponseObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetRideStatusIntentResponseObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetRideStatusIntentResponseObserver_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetUserCurrentRestaurantReservationBookingsIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetUserCurrentRestaurantReservationBookingsIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetUserCurrentRestaurantReservationBookingsIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetVisualCodeIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetVisualCodeIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINGetVisualCodeIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINHangUpCallIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINHangUpCallIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINHangUpCallIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINIntentHandlerProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINIntentHandlerProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINIntentHandlerProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINListCarsIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINListCarsIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINListCarsIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINListRideOptionsIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINListRideOptionsIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINListRideOptionsIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINMessagesDomainHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINMessagesDomainHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINMessagesDomainHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINNotebookDomainHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINNotebookDomainHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINNotebookDomainHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPauseWorkoutIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPauseWorkoutIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPauseWorkoutIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPayBillIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPayBillIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPayBillIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPaymentsDomainHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPaymentsDomainHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPaymentsDomainHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPhotosDomainHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPhotosDomainHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPhotosDomainHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPlayMediaIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPlayMediaIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINPlayMediaIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRadioDomainHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRadioDomainHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRadioDomainHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRequestPaymentIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRequestPaymentIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRequestPaymentIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRequestRideIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRequestRideIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRequestRideIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINResumeWorkoutIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINResumeWorkoutIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINResumeWorkoutIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRidesharingDomainHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRidesharingDomainHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINRidesharingDomainHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSaveProfileInCarIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSaveProfileInCarIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSaveProfileInCarIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchCallHistoryIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchCallHistoryIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchCallHistoryIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForAccountsIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForAccountsIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForAccountsIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForBillsIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForBillsIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForBillsIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForMediaIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForMediaIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForMediaIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForMessagesIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForMessagesIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForMessagesIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForNotebookItemsIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForNotebookItemsIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForNotebookItemsIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForPhotosIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForPhotosIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSearchForPhotosIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSendMessageIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSendMessageIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSendMessageIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSendPaymentIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSendPaymentIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSendPaymentIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSendRideFeedbackIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSendRideFeedbackIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSendRideFeedbackIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetAudioSourceInCarIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetAudioSourceInCarIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetAudioSourceInCarIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetCarLockStatusIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetCarLockStatusIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetCarLockStatusIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetClimateSettingsInCarIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetClimateSettingsInCarIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetClimateSettingsInCarIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetDefrosterSettingsInCarIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetDefrosterSettingsInCarIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetDefrosterSettingsInCarIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetMessageAttributeIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetMessageAttributeIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetMessageAttributeIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetProfileInCarIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetProfileInCarIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetProfileInCarIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetRadioStationIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetRadioStationIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetRadioStationIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetSeatSettingsInCarIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetSeatSettingsInCarIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetSeatSettingsInCarIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetTaskAttributeIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetTaskAttributeIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSetTaskAttributeIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINShareFocusStatusIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINShareFocusStatusIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINShareFocusStatusIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSnoozeTasksIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSnoozeTasksIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSnoozeTasksIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSpeakable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSpeakable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINSpeakable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartAudioCallIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartAudioCallIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartAudioCallIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartCallIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartCallIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartCallIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartPhotoPlaybackIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartPhotoPlaybackIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartPhotoPlaybackIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartVideoCallIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartVideoCallIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartVideoCallIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartWorkoutIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartWorkoutIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINStartWorkoutIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINTransferMoneyIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINTransferMoneyIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINTransferMoneyIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINUnsendMessagesIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINUnsendMessagesIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINUnsendMessagesIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINUpdateMediaAffinityIntentHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINUpdateMediaAffinityIntentHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINUpdateMediaAffinityIntentHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINVisualCodeDomainHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINVisualCodeDomainHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINVisualCodeDomainHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINWorkoutsDomainHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINWorkoutsDomainHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.IINWorkoutsDomainHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAccountTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAccountTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAccountTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAccountTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAccountTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INActivateCarSignalIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaMediaDestinationResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaMediaDestinationResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaMediaDestinationResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaMediaDestinationResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaMediaDestinationResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaMediaItemResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaMediaItemResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaMediaItemResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaMediaItemResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddMediaMediaItemResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksTargetTaskListResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksTargetTaskListResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksTargetTaskListResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksTargetTaskListResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksTargetTaskListResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksTemporalEventTriggerResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksTemporalEventTriggerResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksTemporalEventTriggerResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksTemporalEventTriggerResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAddTasksTemporalEventTriggerResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirline_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirline_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirline_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirline_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirline_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirport_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirport_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirport_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirportGate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirportGate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirportGate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirportGate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAirportGate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAnswerCallIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INAppendToNoteIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBalanceAmount_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBalanceAmount_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBalanceAmount_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBalanceAmount_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBalanceAmount_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBalanceTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBalanceTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBalanceTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBalanceTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBalanceTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillDetails_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillDetails_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillDetails_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillDetails_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillDetails_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillPayee_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillPayee_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillPayee_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillPayee_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillPayee_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillPayeeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillPayeeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillPayeeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillPayeeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillPayeeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBillTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBoatReservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBoatReservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBoatReservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBoatReservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBoatReservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBoatTrip_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBoatTrip_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBoatTrip_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBoatTrip_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBoatTrip_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBookRestaurantReservationIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBooleanResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBooleanResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBooleanResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBooleanResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBooleanResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBusReservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBusReservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBusReservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBusReservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBusReservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBusTrip_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBusTrip_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBusTrip_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBusTrip_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INBusTrip_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallCapabilityResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallCapabilityResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallCapabilityResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallCapabilityResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallCapabilityResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallDestinationTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallDestinationTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallDestinationTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallDestinationTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallDestinationTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordTypeOptionsResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordTypeOptionsResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordTypeOptionsResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordTypeOptionsResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordTypeOptionsResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallRecordTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallsDomainHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallsDomainHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCallsDomainHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelRideIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCancelWorkoutIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarAirCirculationModeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarAirCirculationModeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarAirCirculationModeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarAirCirculationModeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarAirCirculationModeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarAudioSourceResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarAudioSourceResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarAudioSourceResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarAudioSourceResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarAudioSourceResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarCommandsDomainHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarCommandsDomainHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarCommandsDomainHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarDefrosterResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarDefrosterResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarDefrosterResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarDefrosterResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarDefrosterResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarHeadUnit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarHeadUnit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarHeadUnit_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarHeadUnit_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarHeadUnit_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarPlayDomainHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarPlayDomainHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarPlayDomainHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarSeatResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarSeatResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarSeatResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarSeatResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarSeatResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarSignalOptionsResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarSignalOptionsResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarSignalOptionsResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarSignalOptionsResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCarSignalOptionsResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateNoteIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCreateTaskListIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCurrencyAmount_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCurrencyAmount_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCurrencyAmount_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCurrencyAmount_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCurrencyAmount_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCurrencyAmountResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCurrencyAmountResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCurrencyAmountResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCurrencyAmountResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INCurrencyAmountResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDailyRoutineRelevanceProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDailyRoutineRelevanceProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDailyRoutineRelevanceProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDailyRoutineRelevanceProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDailyRoutineRelevanceProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsRangeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsRangeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsRangeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsRangeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsRangeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateComponentsResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateRelevanceProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateRelevanceProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateRelevanceProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateRelevanceProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateRelevanceProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateSearchTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateSearchTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateSearchTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateSearchTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDateSearchTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDefaultCardTemplate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDefaultCardTemplate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDefaultCardTemplate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDefaultCardTemplate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDefaultCardTemplate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksTaskListResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksTaskListResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksTaskListResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksTaskListResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksTaskListResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksTaskResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksTaskResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksTaskResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksTaskResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDeleteTasksTaskResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDoubleResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDoubleResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDoubleResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDoubleResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INDoubleResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEditMessageIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEndWorkoutIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEnergyResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEnergyResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEnergyResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEnergyResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEnergyResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEnumResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEnumResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEnumResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEnumResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INEnumResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INExtension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INExtension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INExtension_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INExtension_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INExtension_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFile_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFile_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFile_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFile_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFile_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFileResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFileResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFileResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFileResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFileResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFlight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFlight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFlight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFlight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFlight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFlightReservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFlightReservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFlightReservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFlightReservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFlightReservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFocusStatus_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFocusStatus_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFocusStatus_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFocusStatus_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFocusStatus_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFocusStatusCenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFocusStatusCenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFocusStatusCenter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFocusStatusCenter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INFocusStatusCenter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingDefaultsIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetAvailableRestaurantReservationBookingsIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarLockStatusIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntentResponseObserverWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntentResponseObserverWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetCarPowerLevelStatusIntentResponseObserverWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetReservationDetailsIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetReservationDetailsIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetReservationDetailsIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetReservationDetailsIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetReservationDetailsIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetReservationDetailsIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetReservationDetailsIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetReservationDetailsIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetReservationDetailsIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetReservationDetailsIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRestaurantGuestIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntentResponseObserverWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntentResponseObserverWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetRideStatusIntentResponseObserverWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetUserCurrentRestaurantReservationBookingsIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INGetVisualCodeIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INHangUpCallIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INImage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INImage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INImage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INImage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INImage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INImageNoteContent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INImageNoteContent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INImageNoteContent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INImageNoteContent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INImageNoteContent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntegerResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntegerResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntegerResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntegerResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntegerResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentDonationMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentDonationMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentDonationMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentDonationMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentDonationMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentHandlerProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentHandlerProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentHandlerProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLengthResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLengthResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLengthResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLengthResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLengthResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListCarsIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INListRideOptionsIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLocationRelevanceProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLocationRelevanceProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLocationRelevanceProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLocationRelevanceProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLocationRelevanceProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLocationSearchTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLocationSearchTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLocationSearchTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLocationSearchTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLocationSearchTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLodgingReservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLodgingReservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLodgingReservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLodgingReservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INLodgingReservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMassResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMassResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMassResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMassResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMassResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaAffinityTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaAffinityTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaAffinityTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaAffinityTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaAffinityTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaDestination_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaDestination_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaDestination_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaDestination_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaDestination_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaDestinationResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaDestinationResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaDestinationResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaDestinationResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaDestinationResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaItemResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaItemResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaItemResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaItemResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaItemResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaSearch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaSearch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaSearch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaSearch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaSearch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaUserContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaUserContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaUserContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaUserContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMediaUserContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageAttributeOptionsResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageAttributeOptionsResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageAttributeOptionsResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageAttributeOptionsResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageAttributeOptionsResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageAttributeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageAttributeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageAttributeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageAttributeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageAttributeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageLinkMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageLinkMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageLinkMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageLinkMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageLinkMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageReaction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageReaction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageReaction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageReaction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessageReaction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessagesDomainHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessagesDomainHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INMessagesDomainHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNote_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNote_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNote_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNote_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNote_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNotebookDomainHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNotebookDomainHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNotebookDomainHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNotebookItemTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNotebookItemTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNotebookItemTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNotebookItemTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNotebookItemTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContentResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContentResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContentResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContentResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContentResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContentTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContentTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContentTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContentTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteContentTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INNoteResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectCollection`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectCollection`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectCollection`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectCollection`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectCollection`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectSection`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectSection`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectSection`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectSection`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INObjectSection`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INOutgoingMessageTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INOutgoingMessageTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INOutgoingMessageTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INOutgoingMessageTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INOutgoingMessageTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INParameter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INParameter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INParameter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INParameter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INParameter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPauseWorkoutIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPayBillIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAccount_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAccount_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAccount_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAccount_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAccount_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAccountResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAccountResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAccountResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAccountResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAccountResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAmount_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAmount_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAmount_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAmount_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAmount_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAmountResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAmountResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAmountResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAmountResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentAmountResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentMethod_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentMethod_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentMethod_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentMethod_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentMethod_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentMethodResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentMethodResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentMethodResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentMethodResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentMethodResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentsDomainHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentsDomainHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentsDomainHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentStatusResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentStatusResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentStatusResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentStatusResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPaymentStatusResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPerson_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPerson_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPerson_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPerson_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPerson_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPersonHandle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPersonHandle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPersonHandle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPersonHandle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPersonHandle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPersonResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPersonResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPersonResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPersonResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPersonResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPhotosDomainHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPhotosDomainHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPhotosDomainHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlacemarkResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlacemarkResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlacemarkResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlacemarkResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlacemarkResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlaybackQueueLocationResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlaybackQueueLocationResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlaybackQueueLocationResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlaybackQueueLocationResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlaybackQueueLocationResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlaybackRepeatModeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlaybackRepeatModeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlaybackRepeatModeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlaybackRepeatModeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlaybackRepeatModeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaMediaItemResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaMediaItemResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaMediaItemResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaMediaItemResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaMediaItemResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaPlaybackSpeedResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaPlaybackSpeedResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaPlaybackSpeedResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaPlaybackSpeedResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPlayMediaPlaybackSpeedResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPreferences_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPreferences_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPreferences_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPreferences_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPreferences_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPriceRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPriceRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPriceRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPriceRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INPriceRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRadioDomainHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRadioDomainHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRadioDomainHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRadioTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRadioTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRadioTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRadioTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRadioTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRecurrenceRule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRecurrenceRule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRecurrenceRule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRecurrenceRule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRecurrenceRule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelativeReferenceResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelativeReferenceResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelativeReferenceResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelativeReferenceResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelativeReferenceResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelativeSettingResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelativeSettingResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelativeSettingResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelativeSettingResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelativeSettingResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevanceProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevanceProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevanceProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevanceProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevanceProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevantShortcut_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevantShortcut_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevantShortcut_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevantShortcut_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevantShortcut_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevantShortcutStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevantShortcutStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevantShortcutStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevantShortcutStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRelevantShortcutStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRentalCar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRentalCar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRentalCar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRentalCar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRentalCar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRentalCarReservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRentalCarReservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRentalCarReservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRentalCarReservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRentalCarReservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentCurrencyAmountResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentCurrencyAmountResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentCurrencyAmountResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentCurrencyAmountResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentCurrencyAmountResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentPayerResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentPayerResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentPayerResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentPayerResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestPaymentPayerResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRequestRideIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INReservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INReservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INReservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INReservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INReservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INReservationAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INReservationAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INReservationAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INReservationAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INReservationAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurant_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurant_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurant_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuestDisplayPreferences_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuestDisplayPreferences_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuestDisplayPreferences_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuestDisplayPreferences_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuestDisplayPreferences_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuestResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuestResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuestResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuestResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantGuestResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantOffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantOffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantOffer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantOffer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantOffer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservationBooking_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservationBooking_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservationBooking_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservationBooking_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservationBooking_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservationUserBooking_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservationUserBooking_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservationUserBooking_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservationUserBooking_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantReservationUserBooking_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRestaurantResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INResumeWorkoutIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideCompletionStatus_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideCompletionStatus_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideCompletionStatus_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideCompletionStatus_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideCompletionStatus_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideDriver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideDriver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideDriver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideDriver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideDriver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideFareLineItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideFareLineItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideFareLineItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideFareLineItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideFareLineItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideOption_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideOption_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideOption_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideOption_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideOption_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRidePartySizeOption_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRidePartySizeOption_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRidePartySizeOption_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRidePartySizeOption_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRidePartySizeOption_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRidesharingDomainHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRidesharingDomainHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRidesharingDomainHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideStatus_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideStatus_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideStatus_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideStatus_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideStatus_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideVehicle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideVehicle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideVehicle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideVehicle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INRideVehicle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSaveProfileInCarIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchCallHistoryIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForAccountsIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForBillsIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaMediaItemResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaMediaItemResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaMediaItemResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaMediaItemResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMediaMediaItemResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForMessagesIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForNotebookItemsIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSearchForPhotosIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSeat_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSeat_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSeat_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSeat_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSeat_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageAttachment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageAttachment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageAttachment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageAttachment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageAttachment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentDonationMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentDonationMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentDonationMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentDonationMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentDonationMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageRecipientResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageRecipientResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageRecipientResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageRecipientResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendMessageRecipientResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentCurrencyAmountResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentCurrencyAmountResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentCurrencyAmountResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentCurrencyAmountResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentCurrencyAmountResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentPayeeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentPayeeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentPayeeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentPayeeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendPaymentPayeeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSendRideFeedbackIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetAudioSourceInCarIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetCarLockStatusIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetClimateSettingsInCarIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetDefrosterSettingsInCarIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetMessageAttributeIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetProfileInCarIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetRadioStationIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetSeatSettingsInCarIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSetTaskAttributeTemporalEventTriggerResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShareFocusStatusIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShortcut_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShortcut_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShortcut_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShortcut_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INShortcut_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksTaskResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksTaskResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksTaskResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksTaskResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSnoozeTasksTaskResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpatialEventTrigger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpatialEventTrigger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpatialEventTrigger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpatialEventTrigger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpatialEventTrigger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpatialEventTriggerResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpatialEventTriggerResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpatialEventTriggerResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpatialEventTriggerResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpatialEventTriggerResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableString_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableString_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableString_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableString_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableString_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableStringResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableStringResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableStringResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableStringResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableStringResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeakableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeedResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeedResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeedResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeedResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSpeedResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartAudioCallIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallCallCapabilityResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallCallCapabilityResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallCallCapabilityResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallCallCapabilityResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallCallCapabilityResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallCallRecordToCallBackResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallCallRecordToCallBackResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallCallRecordToCallBackResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallCallRecordToCallBackResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallCallRecordToCallBackResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallContactResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallContactResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallContactResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallContactResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallContactResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartCallIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartPhotoPlaybackIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartVideoCallIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStartWorkoutIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSticker_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSticker_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSticker_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSticker_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INSticker_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStringResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStringResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStringResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStringResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INStringResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskList_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskList_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskList_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskList_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskList_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskListResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskListResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskListResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskListResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskListResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskPriorityResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskPriorityResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskPriorityResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskPriorityResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskPriorityResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskStatusResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskStatusResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskStatusResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskStatusResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTaskStatusResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemperatureResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemperatureResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemperatureResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemperatureResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemperatureResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTrigger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTrigger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTrigger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTrigger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTrigger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTriggerResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTriggerResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTriggerResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTriggerResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTriggerResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTriggerTypeOptionsResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTriggerTypeOptionsResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTriggerTypeOptionsResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTriggerTypeOptionsResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTemporalEventTriggerTypeOptionsResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTermsAndConditions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTermsAndConditions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTermsAndConditions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTermsAndConditions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTermsAndConditions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTextNoteContent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTextNoteContent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTextNoteContent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTextNoteContent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTextNoteContent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTicketedEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTicketedEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTicketedEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTicketedEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTicketedEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTicketedEventReservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTicketedEventReservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTicketedEventReservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTicketedEventReservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTicketedEventReservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTimeIntervalResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTimeIntervalResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTimeIntervalResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTimeIntervalResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTimeIntervalResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTrainReservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTrainReservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTrainReservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTrainReservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTrainReservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTrainTrip_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTrainTrip_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTrainTrip_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTrainTrip_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTrainTrip_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INTransferMoneyIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUnsendMessagesIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpcomingMediaManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpcomingMediaManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpcomingMediaManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpcomingMediaManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpcomingMediaManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntentHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntentHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntentHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntentResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntentResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntentResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntentResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityIntentResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityMediaItemResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityMediaItemResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityMediaItemResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityMediaItemResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUpdateMediaAffinityMediaItemResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUrlResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUrlResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUrlResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUrlResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUrlResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUserContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUserContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUserContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUserContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INUserContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVisualCodeDomainHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVisualCodeDomainHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVisualCodeDomainHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVisualCodeTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVisualCodeTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVisualCodeTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVisualCodeTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVisualCodeTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVocabulary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVocabulary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVocabulary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVocabulary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVocabulary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVoiceShortcut_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVoiceShortcut_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVoiceShortcut_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVoiceShortcut_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVoiceShortcut_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVoiceShortcutCenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVoiceShortcutCenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVoiceShortcutCenter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVoiceShortcutCenter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVoiceShortcutCenter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVolumeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVolumeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVolumeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVolumeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INVolumeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutGoalUnitTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutGoalUnitTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutGoalUnitTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutGoalUnitTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutGoalUnitTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutLocationTypeResolutionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutLocationTypeResolutionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutLocationTypeResolutionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutLocationTypeResolutionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutLocationTypeResolutionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutsDomainHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutsDomainHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Intents.INWorkoutsDomainHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI__INUIAddVoiceShortcutButton.INUIAddVoiceShortcutButtonAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI__INUIAddVoiceShortcutButton.INUIAddVoiceShortcutButtonAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI__INUIAddVoiceShortcutButton.INUIAddVoiceShortcutButtonAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI__INUIAddVoiceShortcutButton.INUIAddVoiceShortcutButtonAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI__INUIAddVoiceShortcutButton.INUIAddVoiceShortcutButtonAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIAddVoiceShortcutButtonDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIAddVoiceShortcutButtonDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIAddVoiceShortcutButtonDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIAddVoiceShortcutViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIAddVoiceShortcutViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIAddVoiceShortcutViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIEditVoiceShortcutViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIEditVoiceShortcutViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIEditVoiceShortcutViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIHostedViewControlling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIHostedViewControlling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIHostedViewControlling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIHostedViewSiriProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIHostedViewSiriProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.IINUIHostedViewSiriProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButtonDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButtonDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButtonDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButtonDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButtonDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButtonDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButtonDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutButtonDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIAddVoiceShortcutViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIEditVoiceShortcutViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIHostedViewControllingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIHostedViewControllingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIHostedViewControllingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIHostedViewSiriProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIHostedViewSiriProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IntentsUI.INUIHostedViewSiriProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:IOSurface.IOSurface_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:IOSurface.IOSurface_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:IOSurface.IOSurface_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:IOSurface.IOSurface_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:IOSurface.IOSurface_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.IJSExport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.IJSExport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.IJSExport_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSExport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSExport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSExport_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSExport_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSExport_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSExportWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSExportWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSExportWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSManagedValue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSManagedValue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSManagedValue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSManagedValue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSManagedValue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSValue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSValue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSValue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSValue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSValue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSVirtualMachine_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSVirtualMachine_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSVirtualMachine_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSVirtualMachine_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:JavaScriptCore.JSVirtualMachine_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation__LPLinkView.LPLinkViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation__LPLinkView.LPLinkViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation__LPLinkView.LPLinkViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation__LPLinkView.LPLinkViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation__LPLinkView.LPLinkViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPLinkMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPLinkMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPLinkMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPLinkMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPLinkMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPLinkView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPLinkView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPLinkView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPLinkView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPLinkView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPMetadataProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPMetadataProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPMetadataProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPMetadataProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LinkPresentation.LPMetadataProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.ILAEnvironmentObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.ILAEnvironmentObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.ILAEnvironmentObserver_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAAuthenticationRequirement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAAuthenticationRequirement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAAuthenticationRequirement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAAuthenticationRequirement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAAuthenticationRequirement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LABiometryFallbackRequirement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LABiometryFallbackRequirement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LABiometryFallbackRequirement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LABiometryFallbackRequirement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LABiometryFallbackRequirement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainStateBiometry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainStateBiometry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainStateBiometry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainStateBiometry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainStateBiometry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainStateCompanion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainStateCompanion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainStateCompanion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainStateCompanion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LADomainStateCompanion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanism_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanism_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanism_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanism_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanism_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismBiometry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismBiometry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismBiometry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismBiometry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismBiometry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismCompanion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismCompanion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismCompanion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismCompanion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismCompanion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismUserPassword_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismUserPassword_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismUserPassword_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismUserPassword_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentMechanismUserPassword_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentObserver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentObserver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentObserver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentObserverWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentObserverWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentObserverWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAEnvironmentState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPersistedRight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPersistedRight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPersistedRight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPersistedRight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPersistedRight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPrivateKey_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPrivateKey_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPrivateKey_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPrivateKey_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPrivateKey_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPublicKey_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPublicKey_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPublicKey_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPublicKey_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LAPublicKey_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LARight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LARight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LARight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LARight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LARight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LARightStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LARightStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LARightStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LARightStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LARightStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LASecret_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LASecret_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LASecret_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LASecret_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:LocalAuthentication.LASecret_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKAnnotationView.MKAnnotationViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKAnnotationView.MKAnnotationViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKAnnotationView.MKAnnotationViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKAnnotationView.MKAnnotationViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKAnnotationView.MKAnnotationViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKCircleView.MKCircleViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKCircleView.MKCircleViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKCircleView.MKCircleViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKCircleView.MKCircleViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKCircleView.MKCircleViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKCompassButton.MKCompassButtonAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKCompassButton.MKCompassButtonAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKCompassButton.MKCompassButtonAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKCompassButton.MKCompassButtonAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKCompassButton.MKCompassButtonAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMapView._MKMapViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMapView._MKMapViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMapView._MKMapViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMapView._MKMapViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMapView._MKMapViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMapView.MKMapViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMapView.MKMapViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMapView.MKMapViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMapView.MKMapViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMapView.MKMapViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKMarkerAnnotationView.MKMarkerAnnotationViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKOverlayPathView.MKOverlayPathViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKOverlayPathView.MKOverlayPathViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKOverlayPathView.MKOverlayPathViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKOverlayPathView.MKOverlayPathViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKOverlayPathView.MKOverlayPathViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKOverlayView.MKOverlayViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKOverlayView.MKOverlayViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKOverlayView.MKOverlayViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKOverlayView.MKOverlayViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKOverlayView.MKOverlayViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPinAnnotationView.MKPinAnnotationViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPinAnnotationView.MKPinAnnotationViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPinAnnotationView.MKPinAnnotationViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPinAnnotationView.MKPinAnnotationViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPinAnnotationView.MKPinAnnotationViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPitchControl.MKPitchControlAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPitchControl.MKPitchControlAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPitchControl.MKPitchControlAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPitchControl.MKPitchControlAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPitchControl.MKPitchControlAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPolygonView.MKPolygonViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPolygonView.MKPolygonViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPolygonView.MKPolygonViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPolygonView.MKPolygonViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPolygonView.MKPolygonViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPolylineView.MKPolylineViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPolylineView.MKPolylineViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPolylineView.MKPolylineViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPolylineView.MKPolylineViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKPolylineView.MKPolylineViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKScaleView.MKScaleViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKScaleView.MKScaleViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKScaleView.MKScaleViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKScaleView.MKScaleViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKScaleView.MKScaleViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserLocationView.MKUserLocationViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserLocationView.MKUserLocationViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserLocationView.MKUserLocationViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserLocationView.MKUserLocationViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserLocationView.MKUserLocationViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserTrackingBarButtonItem.MKUserTrackingBarButtonItemAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserTrackingBarButtonItem.MKUserTrackingBarButtonItemAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserTrackingBarButtonItem.MKUserTrackingBarButtonItemAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserTrackingBarButtonItem.MKUserTrackingBarButtonItemAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserTrackingBarButtonItem.MKUserTrackingBarButtonItemAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserTrackingButton.MKUserTrackingButtonAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserTrackingButton.MKUserTrackingButtonAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserTrackingButton.MKUserTrackingButtonAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserTrackingButton.MKUserTrackingButtonAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKUserTrackingButton.MKUserTrackingButtonAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKZoomControl.MKZoomControlAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKZoomControl.MKZoomControlAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKZoomControl.MKZoomControlAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKZoomControl.MKZoomControlAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit__MKZoomControl.MKZoomControlAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKAnnotation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKAnnotation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKAnnotation_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKGeoJsonObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKGeoJsonObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKGeoJsonObject_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKLocalSearchCompleterDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKLocalSearchCompleterDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKLocalSearchCompleterDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKLookAroundViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKLookAroundViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKLookAroundViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKMapItemDetailViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKMapItemDetailViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKMapItemDetailViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKMapViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKMapViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKMapViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKOverlay_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKOverlay_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKOverlay_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKReverseGeocoderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKReverseGeocoderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.IMKReverseGeocoderDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddress_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddress_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddress_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddress_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddress_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddressFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddressFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddressFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddressFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddressFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddressRepresentations_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddressRepresentations_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddressRepresentations_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddressRepresentations_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAddressRepresentations_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotationView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotationView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotationView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotationView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotationView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKAnnotationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircleRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircleRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircleRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircleRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircleRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircleView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircleView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircleView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircleView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCircleView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKClusterAnnotation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKClusterAnnotation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKClusterAnnotation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKClusterAnnotation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKClusterAnnotation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCompassButton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCompassButton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCompassButton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCompassButton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKCompassButton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirections_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirections_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirections_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirections_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirections_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirectionsRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirectionsRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirectionsRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirectionsRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirectionsRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirectionsResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirectionsResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirectionsResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirectionsResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDirectionsResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDistanceFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDistanceFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDistanceFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDistanceFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKDistanceFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKETAResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKETAResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKETAResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKETAResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKETAResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeocodingRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeocodingRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeocodingRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeocodingRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeocodingRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeodesicPolyline_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeodesicPolyline_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeodesicPolyline_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeodesicPolyline_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeodesicPolyline_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonDecoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonDecoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonDecoder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonDecoder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonDecoder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonFeature_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonFeature_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonFeature_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonFeature_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonFeature_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonObjectWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonObjectWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGeoJsonObjectWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGradientPolylineRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGradientPolylineRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGradientPolylineRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGradientPolylineRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKGradientPolylineRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKHybridMapConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKHybridMapConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKHybridMapConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKHybridMapConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKHybridMapConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKIconStyle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKIconStyle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKIconStyle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKIconStyle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKIconStyle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKImageryMapConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKImageryMapConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKImageryMapConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKImageryMapConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKImageryMapConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalPointsOfInterestRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalPointsOfInterestRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalPointsOfInterestRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalPointsOfInterestRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalPointsOfInterestRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleterDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleterDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleterDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleterDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleterDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleterDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleterDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompleterDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompletion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompletion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompletion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompletion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchCompletion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLocalSearchResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundScene_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundScene_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundScene_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundScene_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundScene_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSceneRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSceneRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSceneRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSceneRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSceneRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshot_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshot_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshot_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshot_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshot_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshotOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshotOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshotOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshotOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshotOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshotter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshotter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshotter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshotter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundSnapshotter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKLookAroundViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCamera_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCamera_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCamera_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCamera_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCamera_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCameraBoundary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCameraBoundary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCameraBoundary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCameraBoundary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCameraBoundary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCameraZoomRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCameraZoomRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCameraZoomRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCameraZoomRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapCameraZoomRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapFeatureAnnotation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapFeatureAnnotation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapFeatureAnnotation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapFeatureAnnotation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapFeatureAnnotation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemAnnotation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemAnnotation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemAnnotation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemAnnotation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemAnnotation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailSelectionAccessoryPresentationStyle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemDetailViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemIdentifier_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemIdentifier_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemIdentifier_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemIdentifier_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemIdentifier_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapItemRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshot_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshot_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshot_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshot_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshot_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshotOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshotOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshotOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshotOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshotOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshotter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshotter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshotter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshotter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapSnapshotter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMapViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMarkerAnnotationView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMarkerAnnotationView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMarkerAnnotationView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMarkerAnnotationView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMarkerAnnotationView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolygon_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolygon_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolygon_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolygon_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolygon_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolygonRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolygonRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolygonRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolygonRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolygonRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolyline_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolyline_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolyline_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolyline_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolyline_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolylineRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolylineRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolylineRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolylineRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKMultiPolylineRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlay_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlay_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlay_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlay_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlay_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayPathRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayPathRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayPathRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayPathRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayPathRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayPathView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayPathView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayPathView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayPathView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayPathView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKOverlayWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPinAnnotationView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPinAnnotationView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPinAnnotationView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPinAnnotationView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPinAnnotationView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPitchControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPitchControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPitchControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPitchControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPitchControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPlacemark_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPlacemark_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPlacemark_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPlacemark_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPlacemark_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPointAnnotation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPointAnnotation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPointAnnotation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPointAnnotation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPointAnnotation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPointOfInterestFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPointOfInterestFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPointOfInterestFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPointOfInterestFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPointOfInterestFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygon_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygon_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygon_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygon_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygon_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygonRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygonRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygonRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygonRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygonRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygonView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygonView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygonView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygonView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolygonView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolyline_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolyline_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolyline_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolyline_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolyline_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolylineRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolylineRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolylineRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolylineRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolylineRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolylineView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolylineView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolylineView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolylineView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKPolylineView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoderDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoderDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoderDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoderDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoderDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocoderDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocodingRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocodingRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocodingRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocodingRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKReverseGeocodingRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKRoute_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKRoute_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKRoute_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKRoute_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKRoute_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKRouteStep_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKRouteStep_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKRouteStep_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKRouteStep_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKRouteStep_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKScaleView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKScaleView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKScaleView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKScaleView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKScaleView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKSelectionAccessory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKSelectionAccessory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKSelectionAccessory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKSelectionAccessory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKSelectionAccessory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKShape_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKShape_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKShape_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKShape_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKShape_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKStandardMapConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKStandardMapConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKStandardMapConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKStandardMapConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKStandardMapConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKTileOverlay_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKTileOverlay_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKTileOverlay_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKTileOverlay_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKTileOverlay_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKTileOverlayRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKTileOverlayRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKTileOverlayRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKTileOverlayRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKTileOverlayRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserLocation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserLocation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserLocation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserLocation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserLocation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserLocationView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserLocationView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserLocationView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserLocationView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserLocationView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserTrackingBarButtonItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserTrackingBarButtonItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserTrackingBarButtonItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserTrackingBarButtonItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserTrackingBarButtonItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserTrackingButton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserTrackingButton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserTrackingButton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserTrackingButton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKUserTrackingButton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKZoomControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKZoomControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKZoomControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKZoomControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MapKit.MKZoomControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAFlashingLightsProcessor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAFlashingLightsProcessor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAFlashingLightsProcessor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAFlashingLightsProcessor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAFlashingLightsProcessor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAFlashingLightsProcessorResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAFlashingLightsProcessorResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAFlashingLightsProcessorResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAFlashingLightsProcessorResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAFlashingLightsProcessorResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAMusicHapticsManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAMusicHapticsManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAMusicHapticsManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAMusicHapticsManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaAccessibility.MAMusicHapticsManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer__MPMediaPickerController._MPMediaPickerControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer__MPMediaPickerController._MPMediaPickerControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer__MPMediaPickerController._MPMediaPickerControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer__MPMediaPickerController._MPMediaPickerControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer__MPMediaPickerController._MPMediaPickerControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer__MPVolumeView.MPVolumeViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer__MPVolumeView.MPVolumeViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer__MPVolumeView.MPVolumeViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer__MPVolumeView.MPVolumeViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer__MPVolumeView.MPVolumeViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPMediaPickerControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPMediaPickerControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPMediaPickerControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPMediaPlayback_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPMediaPlayback_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPMediaPlayback_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPNowPlayingSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPNowPlayingSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPNowPlayingSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPPlayableContentDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPPlayableContentDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPPlayableContentDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPPlayableContentDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPPlayableContentDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPPlayableContentDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPSystemMusicPlayerController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPSystemMusicPlayerController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.IMPSystemMusicPlayerController_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPAdTimeRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPAdTimeRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPAdTimeRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPAdTimeRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPAdTimeRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeLanguageOptionCommandEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeLanguageOptionCommandEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeLanguageOptionCommandEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeLanguageOptionCommandEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeLanguageOptionCommandEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackPositionCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackPositionCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackPositionCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackPositionCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackPositionCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackPositionCommandEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackPositionCommandEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackPositionCommandEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackPositionCommandEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackPositionCommandEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackRateCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackRateCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackRateCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackRateCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackRateCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackRateCommandEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackRateCommandEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackRateCommandEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackRateCommandEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangePlaybackRateCommandEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeRepeatModeCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeRepeatModeCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeRepeatModeCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeRepeatModeCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeRepeatModeCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeRepeatModeCommandEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeRepeatModeCommandEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeRepeatModeCommandEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeRepeatModeCommandEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeRepeatModeCommandEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeShuffleModeCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeShuffleModeCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeShuffleModeCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeShuffleModeCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeShuffleModeCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeShuffleModeCommandEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeShuffleModeCommandEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeShuffleModeCommandEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeShuffleModeCommandEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPChangeShuffleModeCommandEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPContentItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPContentItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPContentItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPContentItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPContentItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPFeedbackCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPFeedbackCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPFeedbackCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPFeedbackCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPFeedbackCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPFeedbackCommandEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPFeedbackCommandEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPFeedbackCommandEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPFeedbackCommandEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPFeedbackCommandEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaEntity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaEntity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaEntity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaEntity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaEntity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemAnimatedArtwork_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemAnimatedArtwork_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemAnimatedArtwork_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemAnimatedArtwork_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemAnimatedArtwork_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemArtwork_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemArtwork_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemArtwork_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemArtwork_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemArtwork_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemCollection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemCollection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemCollection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemCollection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaItemCollection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaLibrary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaLibrary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaLibrary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaLibrary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaLibrary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPickerControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaybackWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaybackWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaybackWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaylist_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaylist_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaylist_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaylist_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaylist_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaylistCreationMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaylistCreationMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaylistCreationMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaylistCreationMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPlaylistCreationMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPredicate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPredicate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPredicate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPredicate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPredicate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPropertyPredicate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPropertyPredicate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPropertyPredicate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPropertyPredicate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaPropertyPredicate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaQuery_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaQuery_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaQuery_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaQuery_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaQuery_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaQuerySection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaQuerySection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaQuerySection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaQuerySection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMediaQuerySection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieAccessLog_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieAccessLog_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieAccessLog_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieAccessLog_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieAccessLog_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieAccessLogEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieAccessLogEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieAccessLogEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieAccessLogEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieAccessLogEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieErrorLog_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieErrorLog_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieErrorLog_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieErrorLog_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieErrorLog_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieErrorLogEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieErrorLogEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieErrorLogEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieErrorLogEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMovieErrorLogEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMoviePlayerController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMoviePlayerController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMoviePlayerController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMoviePlayerController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMoviePlayerController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMoviePlayerViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMoviePlayerViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMoviePlayerViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMoviePlayerViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMoviePlayerViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerApplicationController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerApplicationController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerApplicationController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerApplicationController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerApplicationController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerControllerMutableQueue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerControllerMutableQueue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerControllerMutableQueue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerControllerMutableQueue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerControllerMutableQueue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerControllerQueue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerControllerQueue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerControllerQueue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerControllerQueue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerControllerQueue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerMediaItemQueueDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerMediaItemQueueDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerMediaItemQueueDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerMediaItemQueueDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerMediaItemQueueDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerPlayParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerPlayParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerPlayParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerPlayParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerPlayParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerPlayParametersQueueDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerPlayParametersQueueDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerPlayParametersQueueDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerPlayParametersQueueDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerPlayParametersQueueDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerQueueDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerQueueDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerQueueDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerQueueDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerQueueDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerStoreQueueDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerStoreQueueDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerStoreQueueDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerStoreQueueDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPMusicPlayerStoreQueueDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoCenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoCenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoCenter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoCenter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoCenter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoLanguageOption_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoLanguageOption_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoLanguageOption_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoLanguageOption_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoLanguageOption_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoLanguageOptionGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoLanguageOptionGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoLanguageOptionGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoLanguageOptionGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingInfoLanguageOptionGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPNowPlayingSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentManagerContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentManagerContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentManagerContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentManagerContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPPlayableContentManagerContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRatingCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRatingCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRatingCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRatingCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRatingCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRatingCommandEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRatingCommandEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRatingCommandEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRatingCommandEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRatingCommandEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommandCenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommandCenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommandCenter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommandCenter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommandCenter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommandEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommandEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommandEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommandEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPRemoteCommandEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSeekCommandEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSeekCommandEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSeekCommandEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSeekCommandEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSeekCommandEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSkipIntervalCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSkipIntervalCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSkipIntervalCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSkipIntervalCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSkipIntervalCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSkipIntervalCommandEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSkipIntervalCommandEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSkipIntervalCommandEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSkipIntervalCommandEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSkipIntervalCommandEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSystemMusicPlayerControllerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSystemMusicPlayerControllerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPSystemMusicPlayerControllerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPTimedMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPTimedMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPTimedMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPTimedMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPTimedMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPVolumeView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPVolumeView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPVolumeView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPVolumeView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MediaPlayer.MPVolumeView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages__MSStickerBrowserView.MSStickerBrowserViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages__MSStickerBrowserView.MSStickerBrowserViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages__MSStickerBrowserView.MSStickerBrowserViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages__MSStickerBrowserView.MSStickerBrowserViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages__MSStickerBrowserView.MSStickerBrowserViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages__MSStickerView.MSStickerViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages__MSStickerView.MSStickerViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages__MSStickerView.MSStickerViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages__MSStickerView.MSStickerViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages__MSStickerView.MSStickerViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.IMSMessagesAppTranscriptPresentation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.IMSMessagesAppTranscriptPresentation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.IMSMessagesAppTranscriptPresentation_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.IMSStickerBrowserViewDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.IMSStickerBrowserViewDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.IMSStickerBrowserViewDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSConversation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSConversation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSConversation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSConversation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSConversation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageLayout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageLayout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageLayout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageLiveLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageLiveLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageLiveLayout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageLiveLayout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageLiveLayout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessagesAppTranscriptPresentationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessagesAppTranscriptPresentationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessagesAppTranscriptPresentationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessagesAppViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessagesAppViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessagesAppViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessagesAppViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessagesAppViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageTemplateLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageTemplateLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageTemplateLayout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageTemplateLayout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSMessageTemplateLayout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSSticker_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSSticker_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSSticker_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSSticker_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSSticker_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerBrowserViewDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Messages.MSStickerView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI__MFMailComposeViewController.MFMailComposeViewControllerAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI__MFMailComposeViewController.MFMailComposeViewControllerAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI__MFMailComposeViewController.MFMailComposeViewControllerAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI__MFMailComposeViewController.MFMailComposeViewControllerAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI__MFMailComposeViewController.MFMailComposeViewControllerAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI__MFMessageComposeViewController.MFMessageComposeViewControllerAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI__MFMessageComposeViewController.MFMessageComposeViewControllerAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI__MFMessageComposeViewController.MFMessageComposeViewControllerAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI__MFMessageComposeViewController.MFMessageComposeViewControllerAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI__MFMessageComposeViewController.MFMessageComposeViewControllerAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.IMFMailComposeViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.IMFMailComposeViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.IMFMailComposeViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.IMFMessageComposeViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.IMFMessageComposeViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.IMFMessageComposeViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMailComposeViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.MFMessageComposeViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.Mono_MFMailComposeViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.Mono_MFMailComposeViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.Mono_MFMailComposeViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.Mono_MFMailComposeViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.Mono_MFMailComposeViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.Mono_MFMessageComposeViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.Mono_MFMessageComposeViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.Mono_MFMessageComposeViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.Mono_MFMessageComposeViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MessageUI.Mono_MFMessageComposeViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4Archive_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4Archive_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4Archive_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4ArgumentTable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4ArgumentTable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4ArgumentTable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4BinaryFunction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4BinaryFunction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4BinaryFunction_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandAllocator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandAllocator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandAllocator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandQueue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandQueue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommandQueue_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommitFeedback_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommitFeedback_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CommitFeedback_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4Compiler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4Compiler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4Compiler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CompilerTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CompilerTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CompilerTask_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4ComputeCommandEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4ComputeCommandEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4ComputeCommandEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CounterHeap_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CounterHeap_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4CounterHeap_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4MachineLearningCommandEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4MachineLearningCommandEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4MachineLearningCommandEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4MachineLearningPipelineState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4MachineLearningPipelineState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4MachineLearningPipelineState_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4PipelineDataSetSerializer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4PipelineDataSetSerializer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4PipelineDataSetSerializer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4RenderCommandEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4RenderCommandEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTL4RenderCommandEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLAccelerationStructure_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLAccelerationStructure_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLAccelerationStructure_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLAccelerationStructureCommandEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLAccelerationStructureCommandEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLAccelerationStructureCommandEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLAllocation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLAllocation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLAllocation_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLArgumentEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLArgumentEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLArgumentEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBinaryArchive_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBinaryArchive_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBinaryArchive_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBinding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBinding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBinding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBlitCommandEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBlitCommandEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBlitCommandEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBufferBinding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBufferBinding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLBufferBinding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCaptureScope_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCaptureScope_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCaptureScope_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandBufferEncoderInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandBufferEncoderInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandBufferEncoderInfo_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandQueue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandQueue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCommandQueue_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLComputeCommandEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLComputeCommandEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLComputeCommandEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLComputePipelineState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLComputePipelineState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLComputePipelineState_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCounter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCounter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCounter_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCounterSampleBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCounterSampleBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCounterSampleBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCounterSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCounterSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLCounterSet_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDepthStencilState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDepthStencilState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDepthStencilState_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDevice_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDrawable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDrawable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDrawable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDynamicLibrary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDynamicLibrary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLDynamicLibrary_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLEvent_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFence_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFence_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFence_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunction_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionHandle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionHandle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionHandle_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionLog_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionLog_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionLog_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionLogDebugLocation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionLogDebugLocation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionLogDebugLocation_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionStitchingAttribute_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionStitchingAttribute_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionStitchingAttribute_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionStitchingNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionStitchingNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLFunctionStitchingNode_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLHeap_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLHeap_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLHeap_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIndirectCommandBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIndirectCommandBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIndirectCommandBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIndirectComputeCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIndirectComputeCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIndirectComputeCommand_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIndirectRenderCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIndirectRenderCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIndirectRenderCommand_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIntersectionFunctionTable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIntersectionFunctionTable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLIntersectionFunctionTable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLLibrary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLLibrary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLLibrary_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLLogContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLLogContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLLogContainer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLLogState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLLogState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLLogState_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLObjectPayloadBinding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLObjectPayloadBinding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLObjectPayloadBinding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLParallelRenderCommandEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLParallelRenderCommandEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLParallelRenderCommandEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLRasterizationRateMap_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLRasterizationRateMap_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLRasterizationRateMap_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLRenderCommandEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLRenderCommandEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLRenderCommandEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLRenderPipelineState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLRenderPipelineState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLRenderPipelineState_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResidencySet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResidencySet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResidencySet_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResourceStateCommandEncoder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResourceStateCommandEncoder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResourceStateCommandEncoder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResourceViewPool_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResourceViewPool_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLResourceViewPool_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLSamplerState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLSamplerState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLSamplerState_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLSharedEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLSharedEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLSharedEvent_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTensor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTensor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTensor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTensorBinding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTensorBinding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTensorBinding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTexture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTexture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTexture_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTextureBinding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTextureBinding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTextureBinding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTextureViewPool_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTextureViewPool_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLTextureViewPool_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLThreadgroupBinding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLThreadgroupBinding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLThreadgroupBinding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLVisibleFunctionTable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLVisibleFunctionTable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.IMTLVisibleFunctionTable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureBoundingBoxGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureBoundingBoxGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureBoundingBoxGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureBoundingBoxGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureBoundingBoxGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureCurveGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureCurveGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureCurveGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureCurveGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureCurveGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionBoundingBoxGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionBoundingBoxGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionBoundingBoxGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionBoundingBoxGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionBoundingBoxGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionCurveGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionCurveGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionCurveGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionCurveGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionCurveGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionTriangleGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionTriangleGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionTriangleGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionTriangleGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureMotionTriangleGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureTriangleGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureTriangleGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureTriangleGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureTriangleGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4AccelerationStructureTriangleGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ArchiveWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ArchiveWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ArchiveWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ArgumentTableDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ArgumentTableDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ArgumentTableDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ArgumentTableDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ArgumentTableDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ArgumentTableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ArgumentTableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ArgumentTableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4BinaryFunctionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4BinaryFunctionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4BinaryFunctionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4BinaryFunctionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4BinaryFunctionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4BinaryFunctionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4BinaryFunctionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4BinaryFunctionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandAllocatorDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandAllocatorDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandAllocatorDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandAllocatorDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandAllocatorDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandAllocatorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandAllocatorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandAllocatorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandBufferOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandBufferOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandBufferOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandBufferOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandBufferOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandBufferWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandBufferWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandBufferWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandQueueDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandQueueDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandQueueDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandQueueDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandQueueDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandQueueWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandQueueWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommandQueueWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommitFeedbackWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommitFeedbackWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommitFeedbackWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommitOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommitOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommitOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommitOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CommitOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerTaskOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerTaskOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerTaskOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerTaskOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerTaskOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerTaskWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerTaskWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerTaskWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CompilerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ComputeCommandEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ComputeCommandEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ComputeCommandEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ComputePipelineDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ComputePipelineDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ComputePipelineDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ComputePipelineDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4ComputePipelineDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CounterHeapDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CounterHeapDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CounterHeapDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CounterHeapDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CounterHeapDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CounterHeapWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CounterHeapWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4CounterHeapWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4FunctionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4FunctionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4FunctionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4FunctionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4FunctionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4IndirectInstanceAccelerationStructureDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4IndirectInstanceAccelerationStructureDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4IndirectInstanceAccelerationStructureDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4IndirectInstanceAccelerationStructureDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4IndirectInstanceAccelerationStructureDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4InstanceAccelerationStructureDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4InstanceAccelerationStructureDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4InstanceAccelerationStructureDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4InstanceAccelerationStructureDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4InstanceAccelerationStructureDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4LibraryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4LibraryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4LibraryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4LibraryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4LibraryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4LibraryFunctionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4LibraryFunctionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4LibraryFunctionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4LibraryFunctionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4LibraryFunctionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningCommandEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningCommandEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningCommandEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineReflection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineReflection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineReflection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineReflection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineReflection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineStateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineStateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MachineLearningPipelineStateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MeshRenderPipelineDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MeshRenderPipelineDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MeshRenderPipelineDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MeshRenderPipelineDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4MeshRenderPipelineDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDataSetSerializerDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDataSetSerializerDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDataSetSerializerDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDataSetSerializerDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDataSetSerializerDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDataSetSerializerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDataSetSerializerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDataSetSerializerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineStageDynamicLinkingDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineStageDynamicLinkingDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineStageDynamicLinkingDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineStageDynamicLinkingDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PipelineStageDynamicLinkingDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PrimitiveAccelerationStructureDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PrimitiveAccelerationStructureDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PrimitiveAccelerationStructureDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PrimitiveAccelerationStructureDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4PrimitiveAccelerationStructureDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderCommandEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderCommandEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderCommandEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPassDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPassDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPassDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPassDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPassDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineBinaryFunctionsDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineBinaryFunctionsDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineBinaryFunctionsDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineBinaryFunctionsDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineBinaryFunctionsDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineColorAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineColorAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineColorAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineColorAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineColorAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineColorAttachmentDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineColorAttachmentDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineColorAttachmentDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineColorAttachmentDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineColorAttachmentDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineDynamicLinkingDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineDynamicLinkingDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineDynamicLinkingDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineDynamicLinkingDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4RenderPipelineDynamicLinkingDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4SpecializedFunctionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4SpecializedFunctionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4SpecializedFunctionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4SpecializedFunctionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4SpecializedFunctionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4StaticLinkingDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4StaticLinkingDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4StaticLinkingDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4StaticLinkingDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4StaticLinkingDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4StitchedFunctionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4StitchedFunctionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4StitchedFunctionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4StitchedFunctionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4StitchedFunctionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4TileRenderPipelineDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4TileRenderPipelineDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4TileRenderPipelineDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4TileRenderPipelineDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTL4TileRenderPipelineDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureBoundingBoxGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureBoundingBoxGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureBoundingBoxGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureBoundingBoxGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureBoundingBoxGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureCommandEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureCommandEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureCommandEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureCurveGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureCurveGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureCurveGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureCurveGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureCurveGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionBoundingBoxGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionCurveGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureMotionTriangleGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructurePassSampleBufferAttachmentDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureTriangleGeometryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureTriangleGeometryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureTriangleGeometryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureTriangleGeometryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureTriangleGeometryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAccelerationStructureWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAllocationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAllocationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAllocationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArchitecture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArchitecture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArchitecture_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArchitecture_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArchitecture_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgument_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgument_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgument_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgument_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgument_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgumentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgumentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgumentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgumentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgumentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgumentEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgumentEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArgumentEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArrayType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArrayType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArrayType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArrayType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLArrayType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttribute_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttribute_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttribute_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttribute_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttribute_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttributeDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttributeDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttributeDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttributeDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttributeDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttributeDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttributeDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttributeDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttributeDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLAttributeDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBinaryArchiveDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBinaryArchiveDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBinaryArchiveDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBinaryArchiveDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBinaryArchiveDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBinaryArchiveWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBinaryArchiveWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBinaryArchiveWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBindingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBindingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBindingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitCommandEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitCommandEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitCommandEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassSampleBufferAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassSampleBufferAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassSampleBufferAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassSampleBufferAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassSampleBufferAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassSampleBufferAttachmentDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassSampleBufferAttachmentDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassSampleBufferAttachmentDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassSampleBufferAttachmentDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBlitPassSampleBufferAttachmentDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferBindingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferBindingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferBindingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferLayoutDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferLayoutDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferLayoutDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferLayoutDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferLayoutDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferLayoutDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferLayoutDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferLayoutDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferLayoutDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferLayoutDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLBufferWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureScope_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureScope_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureScope_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureScope_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureScope_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureScopeWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureScopeWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCaptureScopeWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandBufferDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandBufferDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandBufferDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandBufferDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandBufferDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandBufferEncoderInfoWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandBufferEncoderInfoWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandBufferEncoderInfoWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandBufferWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandBufferWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandBufferWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandQueueDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandQueueDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandQueueDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandQueueDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandQueueDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandQueueWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandQueueWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCommandQueueWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCompileOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCompileOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCompileOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCompileOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCompileOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputeCommandEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputeCommandEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputeCommandEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassSampleBufferAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassSampleBufferAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassSampleBufferAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassSampleBufferAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassSampleBufferAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassSampleBufferAttachmentDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassSampleBufferAttachmentDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassSampleBufferAttachmentDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassSampleBufferAttachmentDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePassSampleBufferAttachmentDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineReflection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineReflection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineReflection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineReflection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineReflection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineStateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineStateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLComputePipelineStateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterSampleBufferDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterSampleBufferDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterSampleBufferDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterSampleBufferDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterSampleBufferDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterSampleBufferWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterSampleBufferWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterSampleBufferWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterSetWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterSetWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterSetWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLCounterWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDepthStencilDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDepthStencilDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDepthStencilDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDepthStencilDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDepthStencilDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDepthStencilStateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDepthStencilStateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDepthStencilStateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDeviceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDeviceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDeviceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDrawable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDrawable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDrawable_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDrawable_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDrawable_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDrawableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDrawableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDrawableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDynamicLibraryWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDynamicLibraryWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLDynamicLibraryWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLEventWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLEventWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLEventWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFenceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFenceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFenceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionConstant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionConstant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionConstant_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionConstant_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionConstant_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionConstantValues_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionConstantValues_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionConstantValues_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionConstantValues_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionConstantValues_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionHandleWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionHandleWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionHandleWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionLogDebugLocationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionLogDebugLocationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionLogDebugLocationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionLogWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionLogWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionLogWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionReflection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionReflection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionReflection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionReflection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionReflection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingAttributeWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingAttributeWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingAttributeWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingFunctionNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingFunctionNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingFunctionNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingFunctionNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingFunctionNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingGraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingGraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingGraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingInputNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingInputNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingInputNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingInputNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingInputNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingNodeWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingNodeWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionStitchingNodeWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLFunctionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLHeapDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLHeapDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLHeapDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLHeapDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLHeapDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLHeapWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLHeapWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLHeapWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectCommandBufferDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectCommandBufferDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectCommandBufferDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectCommandBufferDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectCommandBufferDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectCommandBufferWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectCommandBufferWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectCommandBufferWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectComputeCommandWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectComputeCommandWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectComputeCommandWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectInstanceAccelerationStructureDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectInstanceAccelerationStructureDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectInstanceAccelerationStructureDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectInstanceAccelerationStructureDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectInstanceAccelerationStructureDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectRenderCommandWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectRenderCommandWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIndirectRenderCommandWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLInstanceAccelerationStructureDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLInstanceAccelerationStructureDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLInstanceAccelerationStructureDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLInstanceAccelerationStructureDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLInstanceAccelerationStructureDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionTableDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionTableDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionTableDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionTableDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionTableDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionTableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionTableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIntersectionFunctionTableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIOCompressionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIOCompressionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLIOCompressionContext_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLibraryWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLibraryWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLibraryWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLinkedFunctions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLinkedFunctions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLinkedFunctions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLinkedFunctions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLinkedFunctions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogContainerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogContainerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogicalToPhysicalColorAttachmentMap_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogicalToPhysicalColorAttachmentMap_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogicalToPhysicalColorAttachmentMap_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogicalToPhysicalColorAttachmentMap_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogicalToPhysicalColorAttachmentMap_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogStateDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogStateDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogStateDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogStateDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogStateDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogStateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogStateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLLogStateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLMeshRenderPipelineDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLMeshRenderPipelineDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLMeshRenderPipelineDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLMeshRenderPipelineDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLMeshRenderPipelineDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLMotionKeyframeData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLMotionKeyframeData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLMotionKeyframeData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLMotionKeyframeData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLMotionKeyframeData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLObjectPayloadBindingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLObjectPayloadBindingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLObjectPayloadBindingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLParallelRenderCommandEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLParallelRenderCommandEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLParallelRenderCommandEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPipelineBufferDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPipelineBufferDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPipelineBufferDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPipelineBufferDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPipelineBufferDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPipelineBufferDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPipelineBufferDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPipelineBufferDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPipelineBufferDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPipelineBufferDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPointerType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPointerType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPointerType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPointerType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPointerType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPrimitiveAccelerationStructureDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPrimitiveAccelerationStructureDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPrimitiveAccelerationStructureDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPrimitiveAccelerationStructureDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLPrimitiveAccelerationStructureDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateLayerArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateLayerArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateLayerArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateLayerArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateLayerArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateLayerDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateLayerDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateLayerDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateLayerDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateLayerDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateMapDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateMapDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateMapDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateMapDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateMapDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateMapWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateMapWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateMapWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateSampleArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateSampleArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateSampleArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateSampleArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRasterizationRateSampleArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderCommandEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderCommandEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderCommandEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassColorAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassColorAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassColorAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassColorAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassColorAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassColorAttachmentDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassColorAttachmentDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassColorAttachmentDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassColorAttachmentDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassColorAttachmentDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassDepthAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassDepthAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassDepthAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassDepthAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassDepthAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassSampleBufferAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassSampleBufferAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassSampleBufferAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassSampleBufferAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassSampleBufferAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassSampleBufferAttachmentDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassSampleBufferAttachmentDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassSampleBufferAttachmentDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassSampleBufferAttachmentDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassSampleBufferAttachmentDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassStencilAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassStencilAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassStencilAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassStencilAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPassStencilAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineColorAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineColorAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineColorAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineColorAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineColorAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineColorAttachmentDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineColorAttachmentDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineColorAttachmentDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineColorAttachmentDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineColorAttachmentDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineFunctionsDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineFunctionsDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineFunctionsDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineFunctionsDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineFunctionsDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineReflection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineReflection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineReflection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineReflection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineReflection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineStateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineStateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLRenderPipelineStateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResidencySetDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResidencySetDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResidencySetDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResidencySetDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResidencySetDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResidencySetWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResidencySetWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResidencySetWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStateCommandEncoderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStateCommandEncoderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStateCommandEncoderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceStatePassSampleBufferAttachmentDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceViewPoolDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceViewPoolDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceViewPoolDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceViewPoolDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceViewPoolDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceViewPoolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceViewPoolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceViewPoolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLResourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSamplerDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSamplerDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSamplerDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSamplerDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSamplerDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSamplerStateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSamplerStateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSamplerStateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventHandle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventHandle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventHandle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventHandle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventHandle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventListener_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventListener_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventListener_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedEventWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedTextureHandle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedTextureHandle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedTextureHandle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedTextureHandle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLSharedTextureHandle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStageInputOutputDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStageInputOutputDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStageInputOutputDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStageInputOutputDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStageInputOutputDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStencilDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStencilDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStencilDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStencilDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStencilDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStitchedLibraryDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStitchedLibraryDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStitchedLibraryDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStitchedLibraryDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStitchedLibraryDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStructMember_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStructMember_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStructMember_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStructMember_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStructMember_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStructType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStructType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStructType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStructType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLStructType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorBindingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorBindingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorBindingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorExtents_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorExtents_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorExtents_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorExtents_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorExtents_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorReferenceType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorReferenceType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorReferenceType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorReferenceType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorReferenceType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTensorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureBindingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureBindingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureBindingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureReferenceType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureReferenceType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureReferenceType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureReferenceType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureReferenceType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureViewDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureViewDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureViewDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureViewDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureViewDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureViewPoolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureViewPoolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureViewPoolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTextureWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLThreadgroupBindingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLThreadgroupBindingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLThreadgroupBindingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineColorAttachmentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineColorAttachmentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineColorAttachmentDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineColorAttachmentDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineColorAttachmentDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineColorAttachmentDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineColorAttachmentDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineColorAttachmentDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineColorAttachmentDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineColorAttachmentDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLTileRenderPipelineDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttribute_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttribute_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttribute_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttribute_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttribute_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttributeDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttributeDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttributeDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttributeDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttributeDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttributeDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttributeDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttributeDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttributeDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexAttributeDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexBufferLayoutDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexBufferLayoutDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexBufferLayoutDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexBufferLayoutDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexBufferLayoutDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexBufferLayoutDescriptorArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexBufferLayoutDescriptorArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexBufferLayoutDescriptorArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexBufferLayoutDescriptorArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexBufferLayoutDescriptorArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVertexDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVisibleFunctionTableDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVisibleFunctionTableDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVisibleFunctionTableDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVisibleFunctionTableDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVisibleFunctionTableDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVisibleFunctionTableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVisibleFunctionTableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Metal.MTLVisibleFunctionTableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXFrameInterpolator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXFrameInterpolator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXFrameInterpolator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXSpatialScaler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXSpatialScaler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXSpatialScaler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXTemporalDenoisedScaler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXTemporalDenoisedScaler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXTemporalDenoisedScaler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXTemporalScaler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXTemporalScaler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTL4FXTemporalScaler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXFrameInterpolatableScaler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXFrameInterpolatableScaler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXFrameInterpolatableScaler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXFrameInterpolator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXFrameInterpolator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXFrameInterpolator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXFrameInterpolatorBase_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXFrameInterpolatorBase_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXFrameInterpolatorBase_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXSpatialScaler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXSpatialScaler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXSpatialScaler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXSpatialScalerBase_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXSpatialScalerBase_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXSpatialScalerBase_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalDenoisedScaler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalDenoisedScaler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalDenoisedScaler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalDenoisedScalerBase_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalDenoisedScalerBase_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalDenoisedScalerBase_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalScaler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalScaler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalScaler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalScalerBase_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalScalerBase_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.IMTLFXTemporalScalerBase_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXFrameInterpolatorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXFrameInterpolatorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXFrameInterpolatorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXSpatialScalerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXSpatialScalerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXSpatialScalerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXTemporalDenoisedScalerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXTemporalDenoisedScalerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXTemporalDenoisedScalerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXTemporalScalerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXTemporalScalerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTL4FXTemporalScalerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatableScalerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatableScalerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatableScalerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatorBaseWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatorBaseWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatorBaseWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatorDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatorDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatorDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatorDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatorDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXFrameInterpolatorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXSpatialScalerBaseWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXSpatialScalerBaseWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXSpatialScalerBaseWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXSpatialScalerDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXSpatialScalerDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXSpatialScalerDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXSpatialScalerDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXSpatialScalerDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXSpatialScalerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXSpatialScalerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXSpatialScalerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalDenoisedScalerBaseWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalDenoisedScalerBaseWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalDenoisedScalerBaseWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalDenoisedScalerDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalDenoisedScalerDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalDenoisedScalerDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalDenoisedScalerDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalDenoisedScalerDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalDenoisedScalerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalDenoisedScalerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalDenoisedScalerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalScalerBaseWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalScalerBaseWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalScalerBaseWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalScalerDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalScalerDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalScalerDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalScalerDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalScalerDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalScalerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalScalerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalFX.MTLFXTemporalScalerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit__MTKView.MTKViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit__MTKView.MTKViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit__MTKView.MTKViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit__MTKView.MTKViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit__MTKView.MTKViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.IMTKViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.IMTKViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.IMTKViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMesh_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMesh_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMesh_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMesh_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMesh_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMeshBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMeshBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMeshBuffer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMeshBuffer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMeshBuffer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMeshBufferAllocator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMeshBufferAllocator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMeshBufferAllocator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMeshBufferAllocator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKMeshBufferAllocator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKSubmesh_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKSubmesh_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKSubmesh_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKSubmesh_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKSubmesh_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKTextureLoader_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKTextureLoader_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKTextureLoader_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKTextureLoader_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKTextureLoader_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalKit.MTKViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnBatchNormalizationDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnConvolutionDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnConvolutionDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnConvolutionDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnGroupNormalizationDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnGroupNormalizationDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnGroupNormalizationDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnInstanceNormalizationDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnInstanceNormalizationDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSCnnInstanceNormalizationDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSDeviceProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSDeviceProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSDeviceProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSHandle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSHandle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSHandle_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSHeapProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSHeapProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSHeapProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSImageAllocator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSImageAllocator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSImageAllocator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSImageSizeEncodingState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSImageSizeEncodingState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSImageSizeEncodingState_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSImageTransformProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSImageTransformProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSImageTransformProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNDArrayAllocator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNDArrayAllocator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNDArrayAllocator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSnnGramMatrixCallback_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSnnGramMatrixCallback_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSnnGramMatrixCallback_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNNLossCallback_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNNLossCallback_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNNLossCallback_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNNPadding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNNPadding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNNPadding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNNTrainableNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNNTrainableNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSNNTrainableNode_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSSvgfTextureAllocator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSSvgfTextureAllocator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.IMPSSvgfTextureAllocator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSAccelerationStructure_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSAccelerationStructure_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSAccelerationStructure_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSAccelerationStructure_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSAccelerationStructure_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSAccelerationStructureGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSAccelerationStructureGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSAccelerationStructureGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSAccelerationStructureGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSAccelerationStructureGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSBinaryImageKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSBinaryImageKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSBinaryImageKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSBinaryImageKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSBinaryImageKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnAdd_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnAdd_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnAdd_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnAdd_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnAdd_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnAddGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnAddGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnAddGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnAddGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnAddGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmetic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmetic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmetic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmetic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmetic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmeticGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmeticGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmeticGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmeticGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmeticGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmeticGradientState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmeticGradientState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmeticGradientState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmeticGradientState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnArithmeticGradientState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationStatistics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationStatistics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationStatistics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationStatistics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationStatistics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationStatisticsGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationStatisticsGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationStatisticsGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationStatisticsGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBatchNormalizationStatisticsGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryConvolution_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryConvolution_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryConvolution_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryConvolution_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryConvolution_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryConvolutionNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryConvolutionNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryConvolutionNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryConvolutionNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryConvolutionNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryFullyConnected_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryFullyConnected_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryFullyConnected_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryFullyConnected_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryFullyConnected_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryFullyConnectedNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryFullyConnectedNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryFullyConnectedNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryFullyConnectedNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryFullyConnectedNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnBinaryKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolution_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolution_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolution_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolution_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolution_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientStateNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientStateNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientStateNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientStateNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionGradientStateNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionStateNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionStateNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionStateNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionStateNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionStateNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTranspose_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTranspose_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTranspose_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTranspose_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTranspose_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCNNConvolutionTransposeGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCNNConvolutionTransposeGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCNNConvolutionTransposeGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCNNConvolutionTransposeGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCNNConvolutionTransposeGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradientState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradientState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradientState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradientState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradientState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradientStateNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradientStateNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradientStateNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradientStateNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeGradientStateNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionTransposeNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionWeightsAndBiasesState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionWeightsAndBiasesState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionWeightsAndBiasesState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionWeightsAndBiasesState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnConvolutionWeightsAndBiasesState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnCrossChannelNormalizationNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDepthWiseConvolutionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDepthWiseConvolutionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDepthWiseConvolutionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDepthWiseConvolutionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDepthWiseConvolutionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDilatedPoolingMaxNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDivide_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDivide_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDivide_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDivide_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDivide_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradientState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradientState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradientState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradientState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutGradientState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnDropoutNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnected_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnected_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnected_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnected_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnected_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnFullyConnectedNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGradientKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGradientKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGradientKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGradientKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGradientKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradientState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradientState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradientState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradientState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationGradientState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnGroupNormalizationNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradientState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradientState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradientState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradientState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationGradientState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnInstanceNormalizationNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLocalContrastNormalizationNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLogSoftMaxNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLoss_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLoss_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLoss_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLoss_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLoss_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossDataDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossDataDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossDataDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossDataDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossDataDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossLabels_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossLabels_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossLabels_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossLabels_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossLabels_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnLossNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiaryKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiaryKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiaryKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiaryKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiaryKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiply_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiply_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiply_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiply_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiply_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiplyGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiplyGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiplyGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiplyGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnMultiplyGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuron_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuron_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuron_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuron_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuron_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronAbsolute_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronAbsolute_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronAbsolute_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronAbsolute_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronAbsolute_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronAbsoluteNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronAbsoluteNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronAbsoluteNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronAbsoluteNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronAbsoluteNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronElu_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronElu_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronElu_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronElu_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronElu_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronEluNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronEluNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronEluNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronEluNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronEluNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronExponential_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronExponential_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronExponential_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronExponential_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronExponential_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronExponentialNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronExponentialNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronExponentialNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronExponentialNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronExponentialNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGeLUNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGeLUNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGeLUNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGeLUNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGeLUNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronHardSigmoid_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronHardSigmoid_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronHardSigmoid_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronHardSigmoid_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronHardSigmoid_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronHardSigmoidNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronHardSigmoidNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronHardSigmoidNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronHardSigmoidNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronHardSigmoidNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLinear_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLinear_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLinear_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLinear_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLinear_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLinearNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLinearNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLinearNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLinearNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLinearNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLogarithm_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLogarithm_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLogarithm_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLogarithm_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLogarithm_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLogarithmNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLogarithmNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLogarithmNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLogarithmNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronLogarithmNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPower_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPower_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPower_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPower_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPower_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPowerNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPowerNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPowerNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPowerNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPowerNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPReLU_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPReLU_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPReLU_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPReLU_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPReLU_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPReLUNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPReLUNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPReLUNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPReLUNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronPReLUNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLU_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLU_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLU_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLU_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLU_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLun_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLun_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLun_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLun_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLun_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLunNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLunNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLunNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLunNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLunNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLUNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLUNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLUNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLUNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronReLUNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSigmoid_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSigmoid_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSigmoid_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSigmoid_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSigmoid_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSigmoidNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSigmoidNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSigmoidNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSigmoidNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSigmoidNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftPlus_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftPlus_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftPlus_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftPlus_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftPlus_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftPlusNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftPlusNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftPlusNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftPlusNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftPlusNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftSign_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftSign_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftSign_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftSign_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftSign_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftSignNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftSignNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftSignNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftSignNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronSoftSignNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronTanH_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronTanH_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronTanH_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronTanH_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronTanH_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronTanHNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronTanHNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronTanHNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronTanHNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNeuronTanHNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationGammaAndBetaState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationGammaAndBetaState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationGammaAndBetaState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationGammaAndBetaState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationGammaAndBetaState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationMeanAndVarianceState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationMeanAndVarianceState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationMeanAndVarianceState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationMeanAndVarianceState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationMeanAndVarianceState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnNormalizationNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPooling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPooling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPooling_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPooling_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPooling_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingAverageNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2Norm_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2Norm_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2Norm_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2Norm_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2Norm_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingL2NormNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingMaxNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnPoolingNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSoftMaxNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSpatialNormalizationNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubPixelConvolutionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubPixelConvolutionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubPixelConvolutionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubPixelConvolutionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubPixelConvolutionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubtract_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubtract_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubtract_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubtract_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubtract_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubtractGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubtractGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubtractGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubtractGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnSubtractGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsampling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsampling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsampling_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsampling_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsampling_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinear_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinear_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinear_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinear_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinear_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingBilinearNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnUpsamplingNearestNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLoss_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLoss_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLoss_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLoss_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLoss_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLossDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLossDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLossDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLossDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLossDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLossNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLossNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLossNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLossNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCnnYoloLossNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCommandBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCommandBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCommandBuffer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCommandBuffer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSCommandBuffer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSDeviceProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSDeviceProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSDeviceProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSGRUDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSGRUDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSGRUDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSGRUDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSGRUDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSHandleWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSHandleWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSHandleWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSHeapProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSHeapProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSHeapProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAdd_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAdd_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAdd_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAdd_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAdd_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAllocatorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAllocatorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAllocatorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAreaMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAreaMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAreaMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAreaMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAreaMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAreaMin_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAreaMin_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAreaMin_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAreaMin_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageAreaMin_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageArithmetic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageArithmetic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageArithmetic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageArithmetic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageArithmetic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageBilinearScale_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageBilinearScale_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageBilinearScale_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageBilinearScale_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageBilinearScale_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageBox_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageBox_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageBox_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageBox_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageBox_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageCanny_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageCanny_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageCanny_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageCanny_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageCanny_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageConversion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageConversion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageConversion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageConversion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageConversion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageConvolution_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageConvolution_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageConvolution_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageConvolution_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageConvolution_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageCopyToMatrix_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageCopyToMatrix_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageCopyToMatrix_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageCopyToMatrix_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageCopyToMatrix_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDilate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDilate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDilate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDilate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDilate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDivide_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDivide_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDivide_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDivide_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageDivide_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageEDLines_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageEDLines_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageEDLines_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageEDLines_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageEDLines_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageErode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageErode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageErode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageErode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageErode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageEuclideanDistanceTransform_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageEuclideanDistanceTransform_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageEuclideanDistanceTransform_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageEuclideanDistanceTransform_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageEuclideanDistanceTransform_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageFindKeypoints_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageFindKeypoints_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageFindKeypoints_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageFindKeypoints_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageFindKeypoints_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGaussianBlur_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGaussianBlur_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGaussianBlur_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGaussianBlur_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGaussianBlur_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGaussianPyramid_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGaussianPyramid_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGaussianPyramid_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGaussianPyramid_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGaussianPyramid_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGuidedFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGuidedFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGuidedFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGuidedFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageGuidedFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogram_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogram_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogram_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogram_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogram_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogramEqualization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogramEqualization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogramEqualization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogramEqualization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogramEqualization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogramSpecification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogramSpecification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogramSpecification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogramSpecification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageHistogramSpecification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageIntegral_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageIntegral_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageIntegral_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageIntegral_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageIntegral_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageIntegralOfSquares_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageIntegralOfSquares_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageIntegralOfSquares_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageIntegralOfSquares_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageIntegralOfSquares_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLanczosScale_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLanczosScale_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLanczosScale_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLanczosScale_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLanczosScale_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacian_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacian_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacian_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacian_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacian_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramid_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramid_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramid_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramid_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramid_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramidAdd_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramidAdd_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramidAdd_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramidAdd_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramidAdd_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramidSubtract_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramidSubtract_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramidSubtract_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramidSubtract_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageLaplacianPyramidSubtract_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageMedian_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageMedian_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageMedian_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageMedian_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageMedian_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageMultiply_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageMultiply_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageMultiply_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageMultiply_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageMultiply_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageNormalizedHistogram_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageNormalizedHistogram_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageNormalizedHistogram_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageNormalizedHistogram_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageNormalizedHistogram_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImagePyramid_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImagePyramid_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImagePyramid_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImagePyramid_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImagePyramid_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMean_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMean_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMean_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMean_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMean_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMin_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMin_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMin_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMin_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnMin_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnSum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnSum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnSum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnSum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceColumnSum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMean_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMean_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMean_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMean_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMean_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMin_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMin_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMin_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMin_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowMin_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowSum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowSum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowSum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowSum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceRowSum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceUnary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceUnary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceUnary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceUnary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageReduceUnary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageScale_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageScale_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageScale_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageScale_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageScale_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSizeEncodingStateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSizeEncodingStateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSizeEncodingStateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSobel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSobel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSobel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSobel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSobel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMean_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMean_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMean_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMean_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMean_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMeanAndVariance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMeanAndVariance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMeanAndVariance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMeanAndVariance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMeanAndVariance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMinAndMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMinAndMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMinAndMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMinAndMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageStatisticsMinAndMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSubtract_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSubtract_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSubtract_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSubtract_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageSubtract_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdBinary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdBinary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdBinary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdBinary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdBinary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdBinaryInverse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdBinaryInverse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdBinaryInverse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdBinaryInverse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdBinaryInverse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdToZero_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdToZero_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdToZero_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdToZero_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdToZero_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdToZeroInverse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdToZeroInverse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdToZeroInverse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdToZeroInverse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdToZeroInverse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdTruncate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdTruncate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdTruncate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdTruncate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageThresholdTruncate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTransformProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTransformProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTransformProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTranspose_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTranspose_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTranspose_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTranspose_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSImageTranspose_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSInstanceAccelerationStructure_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSInstanceAccelerationStructure_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSInstanceAccelerationStructure_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSInstanceAccelerationStructure_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSInstanceAccelerationStructure_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSKeyedUnarchiver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSKeyedUnarchiver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSKeyedUnarchiver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSKeyedUnarchiver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSKeyedUnarchiver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSLSTMDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSLSTMDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSLSTMDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSLSTMDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSLSTMDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrix_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrix_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrix_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrix_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrix_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBatchNormalization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBatchNormalization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBatchNormalization_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBatchNormalization_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBatchNormalization_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBatchNormalizationGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBatchNormalizationGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBatchNormalizationGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBatchNormalizationGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBatchNormalizationGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBinaryKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBinaryKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBinaryKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBinaryKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixBinaryKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopy_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopy_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopy_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopyDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopyDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopyDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopyDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopyDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopyToImage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopyToImage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopyToImage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopyToImage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixCopyToImage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDecompositionCholesky_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDecompositionCholesky_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDecompositionCholesky_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDecompositionCholesky_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDecompositionCholesky_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDecompositionLU_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDecompositionLU_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDecompositionLU_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDecompositionLU_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDecompositionLU_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFindTopK_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFindTopK_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFindTopK_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFindTopK_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFindTopK_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFullyConnected_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFullyConnected_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFullyConnected_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFullyConnected_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFullyConnected_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFullyConnectedGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFullyConnectedGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFullyConnectedGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFullyConnectedGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixFullyConnectedGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixLogSoftMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixLogSoftMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixLogSoftMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixLogSoftMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixLogSoftMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixLogSoftMaxGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixLogSoftMaxGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixLogSoftMaxGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixLogSoftMaxGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixLogSoftMaxGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixMultiplication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixMultiplication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixMultiplication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixMultiplication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixMultiplication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixNeuron_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixNeuron_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixNeuron_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixNeuron_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixNeuron_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixNeuronGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixNeuronGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixNeuronGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixNeuronGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixNeuronGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandom_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandom_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandom_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandom_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandom_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomDistributionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomDistributionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomDistributionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomDistributionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomDistributionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomMtgp32_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomMtgp32_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomMtgp32_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomMtgp32_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomMtgp32_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomPhilox_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomPhilox_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomPhilox_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomPhilox_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixRandomPhilox_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSoftMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSoftMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSoftMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSoftMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSoftMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSoftMaxGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSoftMaxGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSoftMaxGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSoftMaxGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSoftMaxGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveCholesky_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveCholesky_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveCholesky_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveCholesky_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveCholesky_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveLU_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveLU_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveLU_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveLU_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveLU_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveTriangular_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveTriangular_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveTriangular_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveTriangular_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSolveTriangular_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixSum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixUnaryKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixUnaryKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixUnaryKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixUnaryKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixUnaryKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixVectorMultiplication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixVectorMultiplication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixVectorMultiplication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixVectorMultiplication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSMatrixVectorMultiplication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAffineInt4Dequantize_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAffineInt4Dequantize_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAffineInt4Dequantize_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAffineInt4Dequantize_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAffineInt4Dequantize_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAffineQuantizationDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAffineQuantizationDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAffineQuantizationDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAffineQuantizationDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAffineQuantizationDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAllocatorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAllocatorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayAllocatorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinaryKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinaryKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinaryKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinaryKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinaryKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinaryPrimaryGradientKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinaryPrimaryGradientKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinaryPrimaryGradientKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinaryPrimaryGradientKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinaryPrimaryGradientKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinarySecondaryGradientKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinarySecondaryGradientKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinarySecondaryGradientKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinarySecondaryGradientKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayBinarySecondaryGradientKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGather_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGather_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGather_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGather_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGather_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGatherGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGatherGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGatherGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGatherGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGatherGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGatherGradientState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGatherGradientState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGatherGradientState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGatherGradientState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGatherGradientState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGradientState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGradientState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGradientState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGradientState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayGradientState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayIdentity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayIdentity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayIdentity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayIdentity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayIdentity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayLutDequantize_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayLutDequantize_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayLutDequantize_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayLutDequantize_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayLutDequantize_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayLutQuantizationDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayLutQuantizationDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayLutQuantizationDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayLutQuantizationDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayLutQuantizationDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMatrixMultiplication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMatrixMultiplication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMatrixMultiplication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMatrixMultiplication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMatrixMultiplication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryBase_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryBase_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryBase_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryBase_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryBase_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryGradientKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryGradientKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryGradientKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryGradientKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryGradientKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayMultiaryKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayQuantizationDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayQuantizationDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayQuantizationDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayQuantizationDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayQuantizationDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayQuantizedMatrixMultiplication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayQuantizedMatrixMultiplication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayQuantizedMatrixMultiplication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayQuantizedMatrixMultiplication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayQuantizedMatrixMultiplication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayStridedSlice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayStridedSlice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayStridedSlice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayStridedSlice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayStridedSlice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayStridedSliceGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayStridedSliceGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayStridedSliceGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayStridedSliceGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayStridedSliceGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayUnaryGradientKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayUnaryGradientKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayUnaryGradientKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayUnaryGradientKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayUnaryGradientKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayUnaryKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayUnaryKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayUnaryKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayUnaryKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayUnaryKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayVectorLutDequantize_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayVectorLutDequantize_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayVectorLutDequantize_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayVectorLutDequantize_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNDArrayVectorLutDequantize_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNAdditionGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNAdditionGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNAdditionGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNAdditionGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNAdditionGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNAdditionNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNAdditionNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNAdditionNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNAdditionNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNAdditionNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNArithmeticGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNArithmeticGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNArithmeticGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNArithmeticGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNArithmeticGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNArithmeticGradientStateNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNArithmeticGradientStateNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNArithmeticGradientStateNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNArithmeticGradientStateNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNArithmeticGradientStateNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBilinearScaleNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBilinearScaleNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBilinearScaleNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBilinearScaleNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBilinearScaleNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryArithmeticNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryArithmeticNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryArithmeticNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryArithmeticNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryArithmeticNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryGradientState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryGradientState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryGradientState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryGradientState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryGradientState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryGradientStateNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryGradientStateNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryGradientStateNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryGradientStateNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNBinaryGradientStateNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNCompare_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNCompare_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNCompare_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNCompare_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNCompare_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNComparisonNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNComparisonNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNComparisonNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNComparisonNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNComparisonNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNConcatenationGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNConcatenationGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNConcatenationGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNConcatenationGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNConcatenationGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNConcatenationNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNConcatenationNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNConcatenationNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNConcatenationNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNConcatenationNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNCropAndResizeBilinear_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNCropAndResizeBilinear_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNCropAndResizeBilinear_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNCropAndResizeBilinear_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNCropAndResizeBilinear_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNDefaultPadding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNDefaultPadding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNDefaultPadding_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNDefaultPadding_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNDefaultPadding_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNDivisionNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNDivisionNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNDivisionNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNDivisionNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNDivisionNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNFilterNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNFilterNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNFilterNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNFilterNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNFilterNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnForwardLoss_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnForwardLoss_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnForwardLoss_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnForwardLoss_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnForwardLoss_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNForwardLossNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNForwardLossNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNForwardLossNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNForwardLossNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNForwardLossNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientFilterNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientFilterNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientFilterNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientFilterNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientFilterNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientStateNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientStateNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientStateNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientStateNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGradientStateNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGramMatrixCalculationGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGramMatrixCalculationGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGramMatrixCalculationGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGramMatrixCalculationGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGramMatrixCalculationGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculationGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculationGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculationGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculationGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculationGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculationNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculationNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculationNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculationNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCalculationNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCallbackWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCallbackWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGramMatrixCallbackWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNGraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGridSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGridSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGridSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGridSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnGridSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNImageNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNImageNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNImageNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNImageNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNImageNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnInitialGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnInitialGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnInitialGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnInitialGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnInitialGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNInitialGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNInitialGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNInitialGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNInitialGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNInitialGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLabelsNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLabelsNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLabelsNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLabelsNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLabelsNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLanczosScaleNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLanczosScaleNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLanczosScaleNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLanczosScaleNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLanczosScaleNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnLocalCorrelation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnLocalCorrelation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnLocalCorrelation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnLocalCorrelation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnLocalCorrelation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLossCallbackWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLossCallbackWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLossCallbackWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnLossGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnLossGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnLossGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnLossGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnLossGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLossGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLossGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLossGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLossGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNLossGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnMultiaryGradientState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnMultiaryGradientState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnMultiaryGradientState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnMultiaryGradientState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnMultiaryGradientState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnMultiaryGradientStateNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnMultiaryGradientStateNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnMultiaryGradientStateNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnMultiaryGradientStateNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSnnMultiaryGradientStateNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNMultiplicationGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNMultiplicationGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNMultiplicationGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNMultiplicationGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNMultiplicationGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNMultiplicationNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNMultiplicationNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNMultiplicationNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNMultiplicationNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNMultiplicationNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNNeuronDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNNeuronDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNNeuronDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNNeuronDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNNeuronDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerAdam_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerAdam_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerAdam_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerAdam_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerAdam_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerRmsProp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerRmsProp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerRmsProp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerRmsProp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerRmsProp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerStochasticGradientDescent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerStochasticGradientDescent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerStochasticGradientDescent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerStochasticGradientDescent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNOptimizerStochasticGradientDescent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPad_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPad_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPad_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPad_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPad_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPaddingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPaddingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPaddingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNPadNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceBinary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceBinary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceBinary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceBinary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceBinary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMean_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMean_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMean_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMean_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMean_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMin_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMin_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMin_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMin_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnMin_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnSum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnSum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnSum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnSum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceColumnSum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsAndWeightsMean_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsAndWeightsMean_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsAndWeightsMean_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsAndWeightsMean_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsAndWeightsMean_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsAndWeightsSum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsAndWeightsSum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsAndWeightsSum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsAndWeightsSum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsAndWeightsSum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsArgumentMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsArgumentMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsArgumentMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsArgumentMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsArgumentMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsArgumentMin_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsArgumentMin_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsArgumentMin_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsArgumentMin_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsArgumentMin_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMean_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMean_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMean_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMean_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMean_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMin_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMin_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMin_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMin_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsMin_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsSum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsSum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsSum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsSum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceFeatureChannelsSum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMax_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMax_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMax_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMax_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMax_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMean_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMean_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMean_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMean_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMean_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMin_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMin_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMin_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMin_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowMin_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowSum_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowSum_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowSum_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowSum_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceRowSum_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceUnary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceUnary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceUnary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceUnary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReduceUnary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMaxNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMaxNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMaxNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMaxNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMaxNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMeanNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMeanNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMeanNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMeanNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMeanNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMinNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMinNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMinNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMinNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnMinNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnSumNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnSumNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnSumNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnSumNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionColumnSumNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsArgumentMaxNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsArgumentMaxNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsArgumentMaxNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsArgumentMaxNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsArgumentMaxNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsArgumentMinNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsArgumentMinNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsArgumentMinNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsArgumentMinNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsArgumentMinNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMaxNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMaxNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMaxNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMaxNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMaxNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMeanNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMeanNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMeanNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMeanNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMeanNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMinNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMinNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMinNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMinNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsMinNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsSumNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsSumNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsSumNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsSumNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionFeatureChannelsSumNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMaxNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMaxNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMaxNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMaxNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMaxNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMeanNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMeanNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMeanNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMeanNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMeanNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMinNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMinNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMinNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMinNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowMinNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowSumNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowSumNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowSumNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowSumNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionRowSumNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionSpatialMeanGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionSpatialMeanGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionSpatialMeanGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionSpatialMeanGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionSpatialMeanGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionSpatialMeanNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionSpatialMeanNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionSpatialMeanNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionSpatialMeanNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReductionSpatialMeanNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshape_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshape_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshape_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshape_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshape_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeGradient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeGradient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeGradient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeGradient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeGradient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNReshapeNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNResizeBilinear_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNResizeBilinear_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNResizeBilinear_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNResizeBilinear_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNResizeBilinear_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNScaleNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNScaleNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNScaleNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNScaleNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNScaleNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSlice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSlice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSlice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSlice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSlice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNStateNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNStateNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNStateNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNStateNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNStateNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSubtractionGradientNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSubtractionGradientNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSubtractionGradientNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSubtractionGradientNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSubtractionGradientNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSubtractionNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSubtractionNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSubtractionNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSubtractionNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNSubtractionNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNTrainableNodeWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNTrainableNodeWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNTrainableNodeWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNUnaryReductionNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNUnaryReductionNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNUnaryReductionNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNUnaryReductionNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSNNUnaryReductionNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSPredicate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSPredicate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSPredicate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSPredicate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSPredicate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRayIntersector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRayIntersector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRayIntersector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRayIntersector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRayIntersector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnImageInferenceLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnImageInferenceLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnImageInferenceLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnImageInferenceLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnImageInferenceLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixInferenceLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixInferenceLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixInferenceLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixInferenceLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixInferenceLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixTrainingLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixTrainingLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixTrainingLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixTrainingLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixTrainingLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixTrainingState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixTrainingState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixTrainingState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixTrainingState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnMatrixTrainingState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnRecurrentImageState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnRecurrentImageState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnRecurrentImageState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnRecurrentImageState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnRecurrentImageState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnRecurrentMatrixState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnRecurrentMatrixState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnRecurrentMatrixState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnRecurrentMatrixState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnRecurrentMatrixState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnSingleGateDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnSingleGateDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnSingleGateDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnSingleGateDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSRnnSingleGateDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSStateResourceList_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSStateResourceList_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSStateResourceList_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSStateResourceList_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSStateResourceList_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvfgDenoiser_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvfgDenoiser_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvfgDenoiser_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvfgDenoiser_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvfgDenoiser_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgf_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgf_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgf_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgf_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgf_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgfDefaultTextureAllocator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgfDefaultTextureAllocator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgfDefaultTextureAllocator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgfDefaultTextureAllocator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgfDefaultTextureAllocator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgfTextureAllocatorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgfTextureAllocatorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSSvgfTextureAllocatorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporalAA_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporalAA_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporalAA_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporalAA_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporalAA_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryImage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryImage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryImage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryImage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryImage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryMatrix_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryMatrix_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryMatrix_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryMatrix_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryMatrix_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryNDArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryNDArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryNDArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryNDArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryNDArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryVector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryVector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryVector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryVector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTemporaryVector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTriangleAccelerationStructure_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTriangleAccelerationStructure_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTriangleAccelerationStructure_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTriangleAccelerationStructure_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSTriangleAccelerationStructure_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSUnaryImageKernel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSUnaryImageKernel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSUnaryImageKernel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSUnaryImageKernel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSUnaryImageKernel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSVector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSVector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSVector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSVector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSVector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSVectorDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSVectorDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSVectorDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSVectorDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShaders.MPSVectorDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphCompilationDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphCompilationDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphCompilationDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphCompilationDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphCompilationDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphConvolution2DOpDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphConvolution2DOpDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphConvolution2DOpDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphConvolution2DOpDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphConvolution2DOpDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphConvolution3DOpDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphConvolution3DOpDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphConvolution3DOpDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphConvolution3DOpDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphConvolution3DOpDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphCreateSparseOpDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphCreateSparseOpDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphCreateSparseOpDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphCreateSparseOpDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphCreateSparseOpDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution2DOpDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution2DOpDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution2DOpDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution2DOpDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution2DOpDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution3DOpDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution3DOpDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution3DOpDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution3DOpDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDepthwiseConvolution3DOpDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutable_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutable_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutable_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutableExecutionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutableExecutionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutableExecutionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutableExecutionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutableExecutionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutableSerializationDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutableSerializationDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutableSerializationDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutableSerializationDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutableSerializationDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphExecutionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphFftDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphFftDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphFftDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphFftDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphFftDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphGruDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphGruDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphGruDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphGruDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphGruDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphImToColOpDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphImToColOpDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphImToColOpDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphImToColOpDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphImToColOpDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphLstmDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphLstmDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphLstmDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphLstmDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphLstmDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphOperation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphOperation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphOperation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphOperation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphOperation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphPooling2DOpDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphPooling2DOpDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphPooling2DOpDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphPooling2DOpDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphPooling2DOpDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphPooling4DOpDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphPooling4DOpDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphPooling4DOpDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphPooling4DOpDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphPooling4DOpDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphRandomOpDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphRandomOpDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphRandomOpDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphRandomOpDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphRandomOpDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphShapedType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphShapedType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphShapedType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphShapedType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphShapedType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphSingleGateRnnDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphSingleGateRnnDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphSingleGateRnnDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphSingleGateRnnDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphSingleGateRnnDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphStencilOpDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphStencilOpDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphStencilOpDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphStencilOpDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphStencilOpDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphTensor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphTensor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphTensor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphTensor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphTensor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphTensorData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphTensorData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphTensorData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphTensorData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphTensorData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphVariableOp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphVariableOp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphVariableOp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphVariableOp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetalPerformanceShadersGraph.MPSGraphVariableOp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.IMXMetricManagerSubscriber_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.IMXMetricManagerSubscriber_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.IMXMetricManagerSubscriber_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAnimationMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAnimationMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAnimationMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAnimationMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAnimationMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppExitMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppExitMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppExitMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppExitMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppExitMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppLaunchDiagnostic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppLaunchDiagnostic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppLaunchDiagnostic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppLaunchDiagnostic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppLaunchDiagnostic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppLaunchMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppLaunchMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppLaunchMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppLaunchMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppLaunchMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppResponsivenessMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppResponsivenessMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppResponsivenessMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppResponsivenessMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppResponsivenessMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppRunTimeMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppRunTimeMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppRunTimeMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppRunTimeMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAppRunTimeMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAverage`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAverage`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAverage`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAverage`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXAverage`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXBackgroundExitData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXBackgroundExitData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXBackgroundExitData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXBackgroundExitData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXBackgroundExitData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCallStackTree_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCallStackTree_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCallStackTree_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCallStackTree_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCallStackTree_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCellularConditionMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCellularConditionMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCellularConditionMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCellularConditionMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCellularConditionMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCpuExceptionDiagnostic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCpuExceptionDiagnostic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCpuExceptionDiagnostic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCpuExceptionDiagnostic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCpuExceptionDiagnostic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCpuMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCpuMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCpuMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCpuMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCpuMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCrashDiagnostic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCrashDiagnostic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCrashDiagnostic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCrashDiagnostic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCrashDiagnostic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXCrashDiagnosticObjectiveCExceptionReason_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiagnostic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiagnostic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiagnostic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiagnostic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiagnostic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiagnosticPayload_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiagnosticPayload_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiagnosticPayload_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiagnosticPayload_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiagnosticPayload_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskIOMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskIOMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskIOMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskIOMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskIOMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskSpaceUsageMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskSpaceUsageMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskSpaceUsageMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskSpaceUsageMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskSpaceUsageMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskWriteExceptionDiagnostic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskWriteExceptionDiagnostic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskWriteExceptionDiagnostic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskWriteExceptionDiagnostic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDiskWriteExceptionDiagnostic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDisplayMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDisplayMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDisplayMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDisplayMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXDisplayMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXForegroundExitData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXForegroundExitData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXForegroundExitData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXForegroundExitData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXForegroundExitData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXGpuMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXGpuMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXGpuMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXGpuMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXGpuMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHangDiagnostic_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHangDiagnostic_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHangDiagnostic_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHangDiagnostic_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHangDiagnostic_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHistogram`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHistogram`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHistogram`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHistogram`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHistogram`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHistogramBucket`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHistogramBucket`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHistogramBucket`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHistogramBucket`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXHistogramBucket`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXLocationActivityMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXLocationActivityMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXLocationActivityMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXLocationActivityMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXLocationActivityMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMemoryMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMemoryMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMemoryMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMemoryMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMemoryMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetaData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetaData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetaData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetaData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetaData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricManagerSubscriberWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricManagerSubscriberWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricManagerSubscriberWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricPayload_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricPayload_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricPayload_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricPayload_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXMetricPayload_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXNetworkTransferMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXNetworkTransferMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXNetworkTransferMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXNetworkTransferMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXNetworkTransferMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostIntervalData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostIntervalData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostIntervalData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostIntervalData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostIntervalData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostMetric_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostMetric_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostMetric_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostMetric_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostMetric_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXSignpostRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXUnitAveragePixelLuminance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXUnitAveragePixelLuminance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXUnitAveragePixelLuminance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXUnitAveragePixelLuminance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXUnitAveragePixelLuminance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXUnitSignalBars_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXUnitSignalBars_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXUnitSignalBars_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXUnitSignalBars_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MetricKit.MXUnitSignalBars_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCActivationDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCActivationDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCActivationDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCActivationDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCActivationDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCActivationLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCActivationLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCActivationLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCActivationLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCActivationLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCAdamOptimizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCAdamOptimizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCAdamOptimizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCAdamOptimizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCAdamOptimizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCAdamWOptimizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCAdamWOptimizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCAdamWOptimizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCAdamWOptimizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCAdamWOptimizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCArithmeticLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCArithmeticLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCArithmeticLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCArithmeticLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCArithmeticLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCBatchNormalizationLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCBatchNormalizationLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCBatchNormalizationLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCBatchNormalizationLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCBatchNormalizationLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCComparisonLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCComparisonLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCComparisonLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCComparisonLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCComparisonLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConcatenationLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConcatenationLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConcatenationLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConcatenationLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConcatenationLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConvolutionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConvolutionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConvolutionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConvolutionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConvolutionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConvolutionLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConvolutionLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConvolutionLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConvolutionLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCConvolutionLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCDropoutLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCDropoutLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCDropoutLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCDropoutLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCDropoutLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCEmbeddingDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCEmbeddingDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCEmbeddingDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCEmbeddingDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCEmbeddingDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCEmbeddingLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCEmbeddingLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCEmbeddingLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCEmbeddingLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCEmbeddingLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCFullyConnectedLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCFullyConnectedLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCFullyConnectedLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCFullyConnectedLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCFullyConnectedLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGatherLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGatherLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGatherLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGatherLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGatherLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGramMatrixLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGramMatrixLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGramMatrixLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGramMatrixLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGramMatrixLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGroupNormalizationLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGroupNormalizationLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGroupNormalizationLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGroupNormalizationLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCGroupNormalizationLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCInferenceGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCInferenceGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCInferenceGraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCInferenceGraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCInferenceGraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCInstanceNormalizationLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCInstanceNormalizationLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCInstanceNormalizationLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCInstanceNormalizationLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCInstanceNormalizationLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLayerNormalizationLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLayerNormalizationLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLayerNormalizationLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLayerNormalizationLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLayerNormalizationLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLossDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLossDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLossDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLossDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLossDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLossLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLossLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLossLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLossLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLossLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLstmDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLstmDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLstmDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLstmDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLstmDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLstmLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLstmLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLstmLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLstmLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCLstmLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMatMulDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMatMulDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMatMulDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMatMulDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMatMulDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMatMulLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMatMulLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMatMulLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMatMulLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMatMulLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMultiheadAttentionDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMultiheadAttentionDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMultiheadAttentionDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMultiheadAttentionDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMultiheadAttentionDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMultiheadAttentionLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMultiheadAttentionLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMultiheadAttentionLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMultiheadAttentionLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCMultiheadAttentionLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCOptimizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCOptimizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCOptimizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCOptimizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCOptimizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCOptimizerDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCOptimizerDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCOptimizerDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCOptimizerDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCOptimizerDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPaddingLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPaddingLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPaddingLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPaddingLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPaddingLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPlatform_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPlatform_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPlatform_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPlatform_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPlatform_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPoolingDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPoolingDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPoolingDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPoolingDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPoolingDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPoolingLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPoolingLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPoolingLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPoolingLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCPoolingLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCReductionLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCReductionLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCReductionLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCReductionLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCReductionLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCReshapeLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCReshapeLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCReshapeLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCReshapeLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCReshapeLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCRmsPropOptimizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCRmsPropOptimizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCRmsPropOptimizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCRmsPropOptimizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCRmsPropOptimizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCScatterLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCScatterLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCScatterLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCScatterLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCScatterLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSelectionLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSelectionLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSelectionLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSelectionLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSelectionLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSgdOptimizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSgdOptimizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSgdOptimizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSgdOptimizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSgdOptimizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSliceLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSliceLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSliceLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSliceLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSliceLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSoftmaxLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSoftmaxLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSoftmaxLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSoftmaxLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSoftmaxLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSplitLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSplitLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSplitLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSplitLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCSplitLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorOptimizerDeviceData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorOptimizerDeviceData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorOptimizerDeviceData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorOptimizerDeviceData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorOptimizerDeviceData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorParameter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorParameter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorParameter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorParameter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTensorParameter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTrainingGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTrainingGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTrainingGraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTrainingGraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTrainingGraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTransposeLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTransposeLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTransposeLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTransposeLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCTransposeLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCUpsampleLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCUpsampleLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCUpsampleLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCUpsampleLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCUpsampleLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCYoloLossDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCYoloLossDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCYoloLossDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCYoloLossDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCYoloLossDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCYoloLossLayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCYoloLossLayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCYoloLossLayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCYoloLossLayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MLCompute.MLCYoloLossLayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLAssetResolver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLAssetResolver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLAssetResolver_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLComponent_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLJointAnimation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLJointAnimation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLJointAnimation_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLLightProbeIrradianceDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLLightProbeIrradianceDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLLightProbeIrradianceDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLMeshBuffer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLMeshBuffer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLMeshBuffer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLMeshBufferAllocator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLMeshBufferAllocator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLMeshBufferAllocator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLMeshBufferZone_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLMeshBufferZone_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLMeshBufferZone_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLNamed_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLNamed_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLNamed_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLObjectContainerComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLObjectContainerComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLObjectContainerComponent_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLTransformComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLTransformComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLTransformComponent_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLTransformOp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLTransformOp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.IMDLTransformOp_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedMatrix4x4_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedMatrix4x4_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedMatrix4x4_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedMatrix4x4_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedMatrix4x4_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedQuaternion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedQuaternion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedQuaternion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedQuaternion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedQuaternion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedQuaternionArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedQuaternionArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedQuaternionArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedQuaternionArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedQuaternionArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedScalar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedScalar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedScalar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedScalar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedScalar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedScalarArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedScalarArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedScalarArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedScalarArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedScalarArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedValue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedValue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedValue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedValue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedValue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector2_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector2_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector2_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector3_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector3_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector3_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector3_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector3_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector3Array_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector3Array_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector3Array_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector3Array_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector3Array_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector4_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector4_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector4_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector4_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimatedVector4_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimationBindComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimationBindComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimationBindComponent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimationBindComponent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAnimationBindComponent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAreaLight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAreaLight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAreaLight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAreaLight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAreaLight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAssetResolverWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAssetResolverWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLAssetResolverWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLBundleAssetResolver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLBundleAssetResolver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLBundleAssetResolver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLBundleAssetResolver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLBundleAssetResolver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLCamera_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLCamera_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLCamera_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLCamera_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLCamera_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLCheckerboardTexture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLCheckerboardTexture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLCheckerboardTexture_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLCheckerboardTexture_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLCheckerboardTexture_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLColorSwatchTexture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLColorSwatchTexture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLColorSwatchTexture_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLColorSwatchTexture_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLColorSwatchTexture_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLComponentWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLComponentWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLComponentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLJointAnimationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLJointAnimationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLJointAnimationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbe_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbe_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbe_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbe_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbe_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbeIrradianceDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbeIrradianceDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbeIrradianceDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbeIrradianceDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbeIrradianceDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbeIrradianceDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbeIrradianceDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLLightProbeIrradianceDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterial_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterial_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterial_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterial_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterial_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialProperty_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialProperty_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialProperty_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialProperty_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialProperty_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyConnection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyConnection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyConnection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyConnection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyConnection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyGraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyGraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyGraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyGraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyGraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMaterialPropertyNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMatrix4x4Array_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMatrix4x4Array_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMatrix4x4Array_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMatrix4x4Array_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMatrix4x4Array_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMesh_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMesh_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMesh_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMesh_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMesh_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferAllocatorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferAllocatorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferAllocatorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferDataAllocator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferDataAllocator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferDataAllocator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferDataAllocator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferDataAllocator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferMap_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferMap_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferMap_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferMap_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferMap_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferZoneDefault_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferZoneDefault_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferZoneDefault_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferZoneDefault_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferZoneDefault_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferZoneWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferZoneWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLMeshBufferZoneWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNamedWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNamedWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNamedWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNoiseTexture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNoiseTexture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNoiseTexture_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNoiseTexture_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNoiseTexture_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNormalMapTexture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNormalMapTexture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNormalMapTexture_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNormalMapTexture_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLNormalMapTexture_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObjectContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObjectContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObjectContainer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObjectContainer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObjectContainer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObjectContainerComponentWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObjectContainerComponentWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLObjectContainerComponentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPackedJointAnimation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPackedJointAnimation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPackedJointAnimation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPackedJointAnimation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPackedJointAnimation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPathAssetResolver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPathAssetResolver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPathAssetResolver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPathAssetResolver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPathAssetResolver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhotometricLight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhotometricLight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhotometricLight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhotometricLight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhotometricLight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhysicallyPlausibleLight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhysicallyPlausibleLight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhysicallyPlausibleLight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhysicallyPlausibleLight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhysicallyPlausibleLight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhysicallyPlausibleScatteringFunction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhysicallyPlausibleScatteringFunction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhysicallyPlausibleScatteringFunction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhysicallyPlausibleScatteringFunction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLPhysicallyPlausibleScatteringFunction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLRelativeAssetResolver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLRelativeAssetResolver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLRelativeAssetResolver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLRelativeAssetResolver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLRelativeAssetResolver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLScatteringFunction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLScatteringFunction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLScatteringFunction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLScatteringFunction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLScatteringFunction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSkeleton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSkeleton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSkeleton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSkeleton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSkeleton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSkyCubeTexture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSkyCubeTexture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSkyCubeTexture_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSkyCubeTexture_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSkyCubeTexture_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLStereoscopicCamera_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLStereoscopicCamera_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLStereoscopicCamera_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLStereoscopicCamera_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLStereoscopicCamera_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSubmesh_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSubmesh_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSubmesh_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSubmesh_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSubmesh_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSubmeshTopology_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSubmeshTopology_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSubmeshTopology_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSubmeshTopology_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLSubmeshTopology_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTexture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTexture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTexture_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTexture_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTexture_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTextureFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTextureFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTextureFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTextureFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTextureFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTextureSampler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTextureSampler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTextureSampler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTextureSampler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTextureSampler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransform_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransform_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransform_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransform_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransform_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformComponentWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformComponentWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformComponentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformMatrixOp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformMatrixOp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformMatrixOp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformMatrixOp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformMatrixOp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformOpWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformOpWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformOpWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformOrientOp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformOrientOp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformOrientOp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformOrientOp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformOrientOp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateOp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateOp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateOp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateOp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateOp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateXOp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateXOp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateXOp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateXOp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateXOp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateYOp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateYOp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateYOp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateYOp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateYOp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateZOp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateZOp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateZOp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateZOp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformRotateZOp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformScaleOp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformScaleOp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformScaleOp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformScaleOp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformScaleOp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformStack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformStack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformStack_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformStack_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformStack_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformTranslateOp_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformTranslateOp_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformTranslateOp_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformTranslateOp_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLTransformTranslateOp_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLUrlTexture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLUrlTexture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLUrlTexture_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLUrlTexture_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLUrlTexture_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLUtility_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLUtility_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLUtility_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLUtility_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLUtility_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexAttribute_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexAttribute_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexAttribute_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexAttribute_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexAttribute_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexAttributeData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexAttributeData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexAttributeData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexAttributeData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexAttributeData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexBufferLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexBufferLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexBufferLayout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexBufferLayout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexBufferLayout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVertexDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVoxelArray_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVoxelArray_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVoxelArray_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVoxelArray_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ModelIO.MDLVoxelArray_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCAdvertiserAssistantDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCAdvertiserAssistantDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCAdvertiserAssistantDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCBrowserViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCBrowserViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCBrowserViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCNearbyServiceAdvertiserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCNearbyServiceAdvertiserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCNearbyServiceAdvertiserDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCNearbyServiceBrowserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCNearbyServiceBrowserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCNearbyServiceBrowserDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.IMCSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistant_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistant_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistant_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistant_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistant_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistantDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistantDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistantDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistantDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistantDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistantDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistantDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCAdvertiserAssistantDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCBrowserViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiser_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiser_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiser_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiser_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiser_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiserDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiserDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiserDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiserDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiserDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceAdvertiserDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowser_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowser_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowser_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowser_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowser_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowserDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowserDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowserDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowserDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowserDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowserDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowserDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCNearbyServiceBrowserDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCPeerID_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCPeerID_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCPeerID_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCPeerID_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCPeerID_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:MultipeerConnectivity.MCSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLContextualEmbedding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLContextualEmbedding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLContextualEmbedding_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLContextualEmbedding_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLContextualEmbedding_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLContextualEmbeddingResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLContextualEmbeddingResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLContextualEmbeddingResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLContextualEmbeddingResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLContextualEmbeddingResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLEmbedding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLEmbedding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLEmbedding_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLEmbedding_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLEmbedding_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLGazetteer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLGazetteer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLGazetteer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLGazetteer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLGazetteer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLLanguageRecognizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLLanguageRecognizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLLanguageRecognizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLLanguageRecognizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLLanguageRecognizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLModel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLModel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLModel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLModel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLModel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLModelConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLModelConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLModelConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLModelConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLModelConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLTagger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLTagger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLTagger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLTagger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLTagger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLTokenizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLTokenizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLTokenizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLTokenizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NaturalLanguage.NLTokenizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.INIDeviceCapability_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.INIDeviceCapability_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.INIDeviceCapability_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.INISessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.INISessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.INISessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIAlgorithmConvergence_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIAlgorithmConvergence_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIAlgorithmConvergence_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIAlgorithmConvergence_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIAlgorithmConvergence_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIDeviceCapabilityWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIDeviceCapabilityWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIDeviceCapabilityWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIDiscoveryToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIDiscoveryToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIDiscoveryToken_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIDiscoveryToken_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NIDiscoveryToken_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyAccessoryConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyAccessoryConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyAccessoryConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyAccessoryConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyAccessoryConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyPeerConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyPeerConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyPeerConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyPeerConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NINearbyPeerConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NearbyInteraction.NISessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NSProtocolFramerOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NSProtocolFramerOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NSProtocolFramerOptions_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWAdvertiseDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWAdvertiseDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWAdvertiseDescriptor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWBrowser_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWBrowser_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWBrowser_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWBrowserDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWBrowserDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWBrowserDescriptor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWBrowseResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWBrowseResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWBrowseResult_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWConnection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWConnection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWConnection_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWConnectionGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWConnectionGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWConnectionGroup_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWContentContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWContentContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWContentContext_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWDataTransferReport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWDataTransferReport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWDataTransferReport_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWEndpoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWEndpoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWEndpoint_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWError_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWError_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWError_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWEstablishmentReport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWEstablishmentReport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWEstablishmentReport_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWFramer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWFramer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWFramer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWFramerMessage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWFramerMessage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWFramerMessage_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWInterface_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWInterface_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWInterface_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWIPMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWIPMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWIPMetadata_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWListener_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWMulticastGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWMulticastGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWMulticastGroup_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWMultiplexGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWMultiplexGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWMultiplexGroup_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWParameters_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWPath_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWPath_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWPath_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWPathMonitor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWPathMonitor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWPathMonitor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWPrivacyContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWPrivacyContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWPrivacyContext_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolDefinition_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolIPOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolIPOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolIPOptions_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolMetadata_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolOptions_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolQuicOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolQuicOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolQuicOptions_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolStack_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolStack_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolStack_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolTcpOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolTcpOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolTcpOptions_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolTlsOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolTlsOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolTlsOptions_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolUdpOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolUdpOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProtocolUdpOptions_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProxyConfig_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProxyConfig_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWProxyConfig_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWQuicMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWQuicMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWQuicMetadata_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWRelayHop_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWRelayHop_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWRelayHop_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWResolutionReport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWResolutionReport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWResolutionReport_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWResolverConfig_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWResolverConfig_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWResolverConfig_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWTcpMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWTcpMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWTcpMetadata_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWTlsMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWTlsMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWTlsMetadata_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWTxtRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWTxtRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWTxtRecord_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWUdpMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWUdpMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWUdpMetadata_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketMetadata_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketOptions_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketRequest_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Network.NWWebSocketResponse_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.INEAppPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.INEAppPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.INEAppPushDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.INWTcpConnectionAuthenticationDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.INWTcpConnectionAuthenticationDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.INWTcpConnectionAuthenticationDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyFlow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyFlow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyFlow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyFlow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyFlow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyProviderManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyProviderManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyProviderManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyProviderManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyProviderManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyTcpFlow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyTcpFlow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyTcpFlow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyTcpFlow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyTcpFlow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyUdpFlow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyUdpFlow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyUdpFlow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyUdpFlow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppProxyUdpFlow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppPushProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppRule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppRule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppRule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppRule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEAppRule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsOverHttpsSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsOverHttpsSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsOverHttpsSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsOverHttpsSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsOverHttpsSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsOverTlsSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsOverTlsSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsOverTlsSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsOverTlsSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsOverTlsSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyProviderProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyProviderProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyProviderProtocol_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyProviderProtocol_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsProxyProviderProtocol_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsSettingsManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsSettingsManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsSettingsManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsSettingsManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEDnsSettingsManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEEvaluateConnectionRule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEEvaluateConnectionRule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEEvaluateConnectionRule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEEvaluateConnectionRule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEEvaluateConnectionRule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterBrowserFlow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterBrowserFlow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterBrowserFlow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterBrowserFlow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterBrowserFlow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterControlProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterControlProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterControlProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterControlProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterControlProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterControlVerdict_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterControlVerdict_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterControlVerdict_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterControlVerdict_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterControlVerdict_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterDataProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterDataProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterDataProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterDataProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterDataProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterDataVerdict_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterDataVerdict_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterDataVerdict_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterDataVerdict_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterDataVerdict_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterFlow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterFlow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterFlow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterFlow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterFlow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterNewFlowVerdict_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterNewFlowVerdict_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterNewFlowVerdict_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterNewFlowVerdict_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterNewFlowVerdict_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterProviderConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterProviderConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterProviderConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterProviderConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterProviderConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterRemediationVerdict_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterRemediationVerdict_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterRemediationVerdict_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterRemediationVerdict_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterRemediationVerdict_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterReport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterReport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterReport_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterReport_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterReport_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterSocketFlow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterSocketFlow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterSocketFlow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterSocketFlow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterSocketFlow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterVerdict_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterVerdict_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterVerdict_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterVerdict_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFilterVerdict_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFlowMetaData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFlowMetaData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFlowMetaData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFlowMetaData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEFlowMetaData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotConfigurationManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotConfigurationManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotConfigurationManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotConfigurationManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotConfigurationManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotEapSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotEapSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotEapSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotEapSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotEapSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelper_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelper_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelper_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelperCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelperCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelperCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelperCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelperCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelperResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelperResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelperResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelperResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHelperResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHS20Settings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHS20Settings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHS20Settings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHS20Settings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotHS20Settings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotNetwork_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotNetwork_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotNetwork_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotNetwork_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEHotspotNetwork_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv4Route_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv4Route_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv4Route_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv4Route_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv4Route_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv4Settings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv4Settings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv4Settings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv4Settings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv4Settings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv6Route_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv6Route_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv6Route_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv6Route_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv6Route_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv6Settings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv6Settings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv6Settings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv6Settings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEIPv6Settings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleConnect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleConnect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleConnect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleConnect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleConnect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleDisconnect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleDisconnect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleDisconnect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleDisconnect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleDisconnect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleEvaluateConnection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleEvaluateConnection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleEvaluateConnection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleEvaluateConnection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleEvaluateConnection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleIgnore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleIgnore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleIgnore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleIgnore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEOnDemandRuleIgnore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacket_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacket_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacket_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacket_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacket_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelFlow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelFlow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelFlow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelFlow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelFlow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelNetworkSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelNetworkSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelNetworkSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelNetworkSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelNetworkSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPacketTunnelProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPrivateLteNetwork_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPrivateLteNetwork_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPrivateLteNetwork_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPrivateLteNetwork_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEPrivateLteNetwork_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProxyServer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProxyServer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProxyServer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProxyServer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProxyServer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProxySettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProxySettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProxySettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProxySettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEProxySettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NERelay_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NERelay_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NERelay_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NERelay_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NERelay_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NERelayManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NERelayManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NERelayManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NERelayManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NERelayManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelNetworkSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelNetworkSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelNetworkSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelNetworkSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelNetworkSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderProtocol_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderProtocol_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderProtocol_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NETunnelProviderSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEUrlFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEUrlFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEUrlFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEUrlFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEUrlFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnConnection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnConnection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnConnection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnConnection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnConnection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnIke2SecurityAssociationParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnIke2SecurityAssociationParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnIke2SecurityAssociationParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnIke2SecurityAssociationParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnIke2SecurityAssociationParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnIkev2PpkConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnIkev2PpkConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnIkev2PpkConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnIkev2PpkConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnIkev2PpkConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocol_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocol_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocol_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocolIke2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocolIke2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocolIke2_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocolIke2_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocolIke2_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocolIpSec_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocolIpSec_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocolIpSec_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocolIpSec_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NEVpnProtocolIpSec_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWBonjourServiceEndpoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWBonjourServiceEndpoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWBonjourServiceEndpoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWBonjourServiceEndpoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWBonjourServiceEndpoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWEndpoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWEndpoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWEndpoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWEndpoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWEndpoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWHostEndpoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWHostEndpoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWHostEndpoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWHostEndpoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWHostEndpoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWPath_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWPath_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWPath_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWPath_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWPath_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnectionAuthenticationDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnectionAuthenticationDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnectionAuthenticationDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnectionAuthenticationDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnectionAuthenticationDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnectionAuthenticationDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnectionAuthenticationDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTcpConnectionAuthenticationDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTlsParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTlsParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTlsParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTlsParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWTlsParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWUdpSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWUdpSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWUdpSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWUdpSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:NetworkExtension.NWUdpSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Class_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Class_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Class_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Protocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Protocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Protocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Selector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Selector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ObjCRuntime.Selector_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.IOSLogEntryFromProcess_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.IOSLogEntryFromProcess_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.IOSLogEntryFromProcess_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.IOSLogEntryWithPayload_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.IOSLogEntryWithPayload_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.IOSLogEntryWithPayload_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryActivity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryActivity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryActivity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryActivity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryActivity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryBoundary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryBoundary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryBoundary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryBoundary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryBoundary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryFromProcessWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryFromProcessWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryFromProcessWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryLog_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryLog_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryLog_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryLog_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryLog_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntrySignpost_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntrySignpost_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntrySignpost_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntrySignpost_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntrySignpost_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryWithPayloadWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryWithPayloadWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEntryWithPayloadWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEnumerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEnumerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEnumerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEnumerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogEnumerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogMessageComponent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogMessageComponent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogMessageComponent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogMessageComponent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogMessageComponent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogPosition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogPosition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogPosition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogPosition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogPosition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:OSLog.OSLogStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKAddPassButton.PKAddPassButtonAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKAddPassButton.PKAddPassButtonAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKAddPassButton.PKAddPassButtonAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKAddPassButton.PKAddPassButtonAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKAddPassButton.PKAddPassButtonAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKAddPassesViewController._PKAddPassesViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKAddPassesViewController._PKAddPassesViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKAddPassesViewController._PKAddPassesViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKAddPassesViewController._PKAddPassesViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKAddPassesViewController._PKAddPassesViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKIdentityButton.PKIdentityButtonAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKIdentityButton.PKIdentityButtonAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKIdentityButton.PKIdentityButtonAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKIdentityButton.PKIdentityButtonAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKIdentityButton.PKIdentityButtonAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKPaymentAuthorizationViewController._PKPaymentAuthorizationViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKPaymentAuthorizationViewController._PKPaymentAuthorizationViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKPaymentAuthorizationViewController._PKPaymentAuthorizationViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKPaymentAuthorizationViewController._PKPaymentAuthorizationViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKPaymentAuthorizationViewController._PKPaymentAuthorizationViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKPaymentButton.PKPaymentButtonAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKPaymentButton.PKPaymentButtonAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKPaymentButton.PKPaymentButtonAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKPaymentButton.PKPaymentButtonAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit__PKPaymentButton.PKPaymentButtonAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKAddPassesViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKAddPassesViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKAddPassesViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKAddPaymentPassViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKAddPaymentPassViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKAddPaymentPassViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKAddSecureElementPassViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKAddSecureElementPassViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKAddSecureElementPassViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKIdentityDocumentDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKIdentityDocumentDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKIdentityDocumentDescriptor_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKIssuerProvisioningExtensionAuthorizationProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKIssuerProvisioningExtensionAuthorizationProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKIssuerProvisioningExtensionAuthorizationProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKPaymentAuthorizationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKPaymentAuthorizationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKPaymentAuthorizationControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKPaymentAuthorizationViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKPaymentAuthorizationViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKPaymentAuthorizationViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKPaymentInformationRequestHandling_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKPaymentInformationRequestHandling_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKPaymentInformationRequestHandling_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKShareSecureElementPassViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKShareSecureElementPassViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKShareSecureElementPassViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKVehicleConnectionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKVehicleConnectionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.IPKVehicleConnectionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddCarKeyPassConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddCarKeyPassConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddCarKeyPassConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddCarKeyPassConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddCarKeyPassConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddIdentityDocumentConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddIdentityDocumentConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddIdentityDocumentConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddIdentityDocumentConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddIdentityDocumentConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddIdentityDocumentMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddIdentityDocumentMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddIdentityDocumentMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddIdentityDocumentMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddIdentityDocumentMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassButton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassButton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassButton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassButton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassButton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassesViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassMetadataPreview_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassMetadataPreview_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassMetadataPreview_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassMetadataPreview_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPassMetadataPreview_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassRequestConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassRequestConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassRequestConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassRequestConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassRequestConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddPaymentPassViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddSecureElementPassViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddShareablePassConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddShareablePassConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddShareablePassConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddShareablePassConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAddShareablePassConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAutomaticReloadPaymentRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAutomaticReloadPaymentRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAutomaticReloadPaymentRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAutomaticReloadPaymentRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAutomaticReloadPaymentRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAutomaticReloadPaymentSummaryItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAutomaticReloadPaymentSummaryItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAutomaticReloadPaymentSummaryItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAutomaticReloadPaymentSummaryItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKAutomaticReloadPaymentSummaryItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventConfigurationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventConfigurationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventConfigurationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventConfigurationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventConfigurationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventMetadataRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventMetadataRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventMetadataRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventMetadataRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventMetadataRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventMetadataResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventMetadataResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventMetadataResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventMetadataResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventMetadataResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventSignatureRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventSignatureRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventSignatureRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventSignatureRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventSignatureRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventSignatureResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventSignatureResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventSignatureResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventSignatureResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKBarcodeEventSignatureResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKContact_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKContact_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKContact_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKContact_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKContact_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDateComponentsRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDateComponentsRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDateComponentsRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDateComponentsRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDateComponentsRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDeferredPaymentRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDeferredPaymentRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDeferredPaymentRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDeferredPaymentRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDeferredPaymentRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDeferredPaymentSummaryItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDeferredPaymentSummaryItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDeferredPaymentSummaryItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDeferredPaymentSummaryItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDeferredPaymentSummaryItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementAuthorizationController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementAuthorizationController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementAuthorizationController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementAuthorizationController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementAuthorizationController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementAuthorizationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementAuthorizationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementAuthorizationControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementAuthorizationControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementAuthorizationControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementSummaryItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementSummaryItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementSummaryItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementSummaryItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementSummaryItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementVoucher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementVoucher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementVoucher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementVoucher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKDisbursementVoucher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityAnyOfDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityAnyOfDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityAnyOfDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityAnyOfDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityAnyOfDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityAuthorizationController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityAuthorizationController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityAuthorizationController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityAuthorizationController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityAuthorizationController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityButton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityButton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityButton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityButton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityButton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocument_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocument_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocument_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocument_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocument_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocumentDescriptorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocumentDescriptorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocumentDescriptorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocumentMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocumentMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocumentMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocumentMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDocumentMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDriversLicenseDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDriversLicenseDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDriversLicenseDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDriversLicenseDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityDriversLicenseDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityElement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityElement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityElement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityIntentToStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityIntentToStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityIntentToStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityIntentToStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityIntentToStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityNationalIdCardDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityNationalIdCardDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityNationalIdCardDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityNationalIdCardDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityNationalIdCardDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityPhotoIdDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityPhotoIdDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityPhotoIdDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityPhotoIdDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityPhotoIdDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIdentityRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKInstantFundsOutFeeSummaryItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKInstantFundsOutFeeSummaryItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKInstantFundsOutFeeSummaryItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKInstantFundsOutFeeSummaryItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKInstantFundsOutFeeSummaryItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionAuthorizationProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionAuthorizationProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionAuthorizationProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionPassEntry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionPassEntry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionPassEntry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionPassEntry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionPassEntry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionPaymentPassEntry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionPaymentPassEntry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionPaymentPassEntry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionPaymentPassEntry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionPaymentPassEntry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionStatus_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionStatus_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionStatus_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionStatus_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKIssuerProvisioningExtensionStatus_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKJapanIndividualNumberCardMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKJapanIndividualNumberCardMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKJapanIndividualNumberCardMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKJapanIndividualNumberCardMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKJapanIndividualNumberCardMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKLabeledValue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKLabeledValue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKLabeledValue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKLabeledValue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKLabeledValue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPass_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPass_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPass_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPass_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPass_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPassLibrary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPassLibrary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPassLibrary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPassLibrary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPassLibrary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPassRelevantDate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPassRelevantDate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPassRelevantDate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPassRelevantDate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPassRelevantDate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPayment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPayment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPayment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPayment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPayment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentAuthorizationViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentButton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentButton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentButton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentButton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentButton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentInformationEventExtension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentInformationEventExtension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentInformationEventExtension_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentInformationEventExtension_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentInformationEventExtension_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentInformationRequestHandlingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentInformationRequestHandlingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentInformationRequestHandlingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentMerchantSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentMerchantSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentMerchantSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentMerchantSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentMerchantSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentMethod_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentMethod_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentMethod_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentMethod_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentMethod_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentOrderDetails_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentOrderDetails_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentOrderDetails_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentOrderDetails_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentOrderDetails_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentPass_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentPass_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentPass_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentPass_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentPass_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestCouponCodeUpdate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestCouponCodeUpdate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestCouponCodeUpdate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestCouponCodeUpdate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestCouponCodeUpdate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestMerchantSessionUpdate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestMerchantSessionUpdate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestMerchantSessionUpdate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestMerchantSessionUpdate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestMerchantSessionUpdate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestPaymentMethodUpdate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestPaymentMethodUpdate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestPaymentMethodUpdate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestPaymentMethodUpdate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestPaymentMethodUpdate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestShippingContactUpdate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestShippingContactUpdate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestShippingContactUpdate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestShippingContactUpdate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestShippingContactUpdate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestShippingMethodUpdate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestShippingMethodUpdate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestShippingMethodUpdate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestShippingMethodUpdate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestShippingMethodUpdate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestUpdate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestUpdate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestUpdate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestUpdate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentRequestUpdate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentSummaryItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentSummaryItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentSummaryItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentSummaryItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentSummaryItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentToken_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentToken_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentToken_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentTokenContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentTokenContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentTokenContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentTokenContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKPaymentTokenContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKRecurringPaymentRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKRecurringPaymentRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKRecurringPaymentRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKRecurringPaymentRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKRecurringPaymentRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKRecurringPaymentSummaryItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKRecurringPaymentSummaryItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKRecurringPaymentSummaryItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKRecurringPaymentSummaryItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKRecurringPaymentSummaryItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKSecureElementPass_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKSecureElementPass_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKSecureElementPass_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKSecureElementPass_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKSecureElementPass_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareablePassMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareablePassMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareablePassMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareablePassMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareablePassMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareablePassMetadataPreview_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareablePassMetadataPreview_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareablePassMetadataPreview_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareablePassMetadataPreview_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareablePassMetadataPreview_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShareSecureElementPassViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShippingMethod_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShippingMethod_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShippingMethod_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShippingMethod_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKShippingMethod_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKStoredValuePassBalance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKStoredValuePassBalance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKStoredValuePassBalance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKStoredValuePassBalance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKStoredValuePassBalance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKStoredValuePassProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKStoredValuePassProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKStoredValuePassProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKStoredValuePassProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKStoredValuePassProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKSuicaPassProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKSuicaPassProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKSuicaPassProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKSuicaPassProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKSuicaPassProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKTransitPassProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKTransitPassProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKTransitPassProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKTransitPassProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKTransitPassProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PassKit.PKVehicleConnectionSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfDocument._PdfDocumentDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfDocument._PdfDocumentDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfDocument._PdfDocumentDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfDocument._PdfDocumentDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfDocument._PdfDocumentDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfThumbnailView.PdfThumbnailViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfThumbnailView.PdfThumbnailViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfThumbnailView.PdfThumbnailViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfThumbnailView.PdfThumbnailViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfThumbnailView.PdfThumbnailViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfView._PdfViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfView._PdfViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfView._PdfViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfView._PdfViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfView._PdfViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfView.PdfViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfView.PdfViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfView.PdfViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfView.PdfViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit__PdfView.PdfViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.IPdfDocumentDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.IPdfDocumentDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.IPdfDocumentDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.IPdfPageOverlayViewProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.IPdfPageOverlayViewProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.IPdfPageOverlayViewProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.IPdfViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.IPdfViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.IPdfViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionGoTo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionGoTo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionGoTo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionGoTo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionGoTo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionNamed_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionNamed_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionNamed_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionNamed_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionNamed_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionRemoteGoTo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionRemoteGoTo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionRemoteGoTo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionRemoteGoTo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionRemoteGoTo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionResetForm_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionResetForm_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionResetForm_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionResetForm_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionResetForm_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionUrl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionUrl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionUrl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionUrl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfActionUrl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAnnotation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAnnotation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAnnotation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAnnotation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAnnotation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAppearanceCharacteristics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAppearanceCharacteristics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAppearanceCharacteristics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAppearanceCharacteristics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfAppearanceCharacteristics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfBorder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfBorder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfBorder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfBorder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfBorder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDestination_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDestination_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDestination_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDestination_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDestination_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocument_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocument_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocument_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocument_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocument_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocumentDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocumentDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocumentDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocumentDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocumentDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocumentDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocumentDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfDocumentDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfOutline_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfOutline_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfOutline_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfOutline_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfOutline_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfPage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfPage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfPage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfPage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfPage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfPageOverlayViewProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfPageOverlayViewProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfPageOverlayViewProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfSelection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfSelection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfSelection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfSelection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfSelection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfThumbnailView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfThumbnailView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfThumbnailView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfThumbnailView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfThumbnailView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PdfKit.PdfViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit__PKCanvasView.PKCanvasViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit__PKCanvasView.PKCanvasViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit__PKCanvasView.PKCanvasViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit__PKCanvasView.PKCanvasViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit__PKCanvasView.PKCanvasViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.IPKCanvasViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.IPKCanvasViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.IPKCanvasViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.IPKToolPickerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.IPKToolPickerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.IPKToolPickerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.IPKToolPickerObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.IPKToolPickerObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.IPKToolPickerObserver_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKCanvasViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKDrawing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKDrawing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKDrawing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKDrawing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKDrawing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKEraserTool_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKEraserTool_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKEraserTool_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKEraserTool_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKEraserTool_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKFloatRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKFloatRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKFloatRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKFloatRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKFloatRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKInk_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKInk_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKInk_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKInk_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKInk_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKInkingTool_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKInkingTool_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKInkingTool_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKInkingTool_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKInkingTool_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKLassoTool_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKLassoTool_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKLassoTool_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKLassoTool_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKLassoTool_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKResponderState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKResponderState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKResponderState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKResponderState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKResponderState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStroke_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStroke_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStroke_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStroke_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStroke_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStrokePath_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStrokePath_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStrokePath_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStrokePath_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStrokePath_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStrokePoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStrokePoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStrokePoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStrokePoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKStrokePoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKTool_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKTool_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKTool_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKTool_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKTool_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPicker_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPicker_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPicker_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPicker_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPicker_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerCustomItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerCustomItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerCustomItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerCustomItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerCustomItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerCustomItemConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerCustomItemConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerCustomItemConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerCustomItemConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerCustomItemConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerEraserItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerEraserItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerEraserItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerEraserItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerEraserItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerInkingItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerInkingItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerInkingItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerInkingItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerInkingItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerLassoItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerLassoItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerLassoItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerLassoItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerLassoItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerObserverWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerObserverWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerObserverWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerRulerItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerRulerItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerRulerItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerRulerItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerRulerItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerScribbleItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerScribbleItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerScribbleItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerScribbleItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PencilKit.PKToolPickerScribbleItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAmbientMixerDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAmbientMixerDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAmbientMixerDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAmbientMixerDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAmbientMixerDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAssetRegistry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAssetRegistry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAssetRegistry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAssetRegistry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseAssetRegistry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseBlendNodeDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseBlendNodeDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseBlendNodeDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseBlendNodeDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseBlendNodeDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseCardioidDirectivityModelParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseCardioidDirectivityModelParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseCardioidDirectivityModelParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseCardioidDirectivityModelParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseCardioidDirectivityModelParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseCardioidDirectivityModelSubbandParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseCardioidDirectivityModelSubbandParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseCardioidDirectivityModelSubbandParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseCardioidDirectivityModelSubbandParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseCardioidDirectivityModelSubbandParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseChannelMixerDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseChannelMixerDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseChannelMixerDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseChannelMixerDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseChannelMixerDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseConeDirectivityModelParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseConeDirectivityModelParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseConeDirectivityModelParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseConeDirectivityModelParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseConeDirectivityModelParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseConeDirectivityModelSubbandParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseConeDirectivityModelSubbandParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseConeDirectivityModelSubbandParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseConeDirectivityModelSubbandParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseConeDirectivityModelSubbandParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseContainerNodeDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseContainerNodeDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseContainerNodeDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseContainerNodeDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseContainerNodeDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDirectivityModelParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDirectivityModelParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDirectivityModelParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDirectivityModelParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDirectivityModelParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDistanceModelFadeOutParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDistanceModelFadeOutParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDistanceModelFadeOutParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDistanceModelFadeOutParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDistanceModelFadeOutParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDistanceModelParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDistanceModelParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDistanceModelParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDistanceModelParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDistanceModelParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDucker_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDucker_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDucker_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDucker_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseDucker_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEngine_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEngine_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEngine_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEngine_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEngine_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelope_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelope_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelope_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelope_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelope_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelopeDistanceModelParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelopeDistanceModelParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelopeDistanceModelParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelopeDistanceModelParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelopeDistanceModelParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelopeSegment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelopeSegment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelopeSegment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelopeSegment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseEnvelopeSegment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGeneratorNodeDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGeneratorNodeDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGeneratorNodeDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGeneratorNodeDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGeneratorNodeDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGeometricSpreadingDistanceModelParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGeometricSpreadingDistanceModelParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGeometricSpreadingDistanceModelParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGeometricSpreadingDistanceModelParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGeometricSpreadingDistanceModelParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGlobalMetaParameterAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGlobalMetaParameterAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGlobalMetaParameterAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGlobalMetaParameterAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGlobalMetaParameterAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroupPreset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroupPreset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroupPreset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroupPreset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroupPreset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroupPresetSetting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroupPresetSetting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroupPresetSetting_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroupPresetSetting_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseGroupPresetSetting_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseListener_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseListener_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseListener_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseListener_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseListener_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMappedMetaParameterDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMappedMetaParameterDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMappedMetaParameterDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMappedMetaParameterDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMappedMetaParameterDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMaterial_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMaterial_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMaterial_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMaterial_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMaterial_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMedium_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMedium_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMedium_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMedium_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMedium_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMetaParameter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMetaParameter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMetaParameter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMetaParameter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMetaParameter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMetaParameterDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMetaParameterDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMetaParameterDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMetaParameterDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMetaParameterDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixerDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixerDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixerDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixerDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixerDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixerParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixerParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixerParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixerParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseMixerParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumberMetaParameter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumberMetaParameter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumberMetaParameter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumberMetaParameter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumberMetaParameter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumberMetaParameterDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumberMetaParameterDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumberMetaParameterDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumberMetaParameterDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumberMetaParameterDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumericPair_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumericPair_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumericPair_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumericPair_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseNumericPair_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseOccluder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseOccluder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseOccluder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseOccluder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseOccluder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePullStreamNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePullStreamNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePullStreamNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePullStreamNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePullStreamNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePullStreamNodeDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePullStreamNodeDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePullStreamNodeDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePullStreamNodeDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePullStreamNodeDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePushStreamNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePushStreamNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePushStreamNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePushStreamNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePushStreamNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePushStreamNodeDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePushStreamNodeDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePushStreamNodeDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePushStreamNodeDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhasePushStreamNodeDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseRandomNodeDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseRandomNodeDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseRandomNodeDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseRandomNodeDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseRandomNodeDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSamplerNodeDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSamplerNodeDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSamplerNodeDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSamplerNodeDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSamplerNodeDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseShape_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseShape_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseShape_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseShape_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseShape_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseShapeElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseShapeElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseShapeElement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseShapeElement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseShapeElement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEventNodeAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEventNodeAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEventNodeAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEventNodeAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEventNodeAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEventNodeDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEventNodeDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEventNodeDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEventNodeDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSoundEventNodeDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialMixerDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialMixerDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialMixerDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialMixerDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialMixerDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialPipeline_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialPipeline_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialPipeline_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialPipeline_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialPipeline_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialPipelineEntry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialPipelineEntry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialPipelineEntry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialPipelineEntry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSpatialPipelineEntry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStreamNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStreamNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStreamNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStreamNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStreamNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStringMetaParameter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStringMetaParameter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStringMetaParameter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStringMetaParameter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStringMetaParameter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStringMetaParameterDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStringMetaParameterDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStringMetaParameterDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStringMetaParameterDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseStringMetaParameterDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSwitchNodeDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSwitchNodeDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSwitchNodeDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSwitchNodeDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Phase.PhaseSwitchNodeDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos__PHPhotoLibrary.__phlib_observer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos__PHPhotoLibrary.__phlib_observer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos__PHPhotoLibrary.__phlib_observer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos__PHPhotoLibrary.__phlib_observer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos__PHPhotoLibrary.__phlib_observer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.IPHLivePhotoFrame_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.IPHLivePhotoFrame_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.IPHLivePhotoFrame_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.IPHPhotoLibraryAvailabilityObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.IPHPhotoLibraryAvailabilityObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.IPHPhotoLibraryAvailabilityObserver_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.IPHPhotoLibraryChangeObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.IPHPhotoLibraryChangeObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.IPHPhotoLibraryChangeObserver_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAdjustmentData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAdjustmentData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAdjustmentData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAdjustmentData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAdjustmentData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetChangeRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetChangeRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetChangeRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetChangeRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetChangeRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCollection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCollection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCollection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCollection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCollection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCollectionChangeRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCollectionChangeRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCollectionChangeRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCollectionChangeRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCollectionChangeRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCreationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCreationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCreationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCreationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetCreationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceCreationOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceCreationOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceCreationOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceCreationOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceCreationOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceRequestOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceRequestOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceRequestOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceRequestOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHAssetResourceRequestOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCachingImageManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCachingImageManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCachingImageManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCachingImageManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCachingImageManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHChange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHChange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHChange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHChange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHChange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHChangeRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHChangeRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHChangeRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHChangeRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHChangeRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCloudIdentifier_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCloudIdentifier_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCloudIdentifier_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCloudIdentifier_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCloudIdentifier_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCloudIdentifierMapping_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCloudIdentifierMapping_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCloudIdentifierMapping_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCloudIdentifierMapping_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCloudIdentifierMapping_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollectionList_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollectionList_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollectionList_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollectionList_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollectionList_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollectionListChangeRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollectionListChangeRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollectionListChangeRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollectionListChangeRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHCollectionListChangeRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingInput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingInput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingInput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingInputRequestOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingInputRequestOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingInputRequestOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingInputRequestOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingInputRequestOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHContentEditingOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchResultChangeDetails_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchResultChangeDetails_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchResultChangeDetails_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchResultChangeDetails_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHFetchResultChangeDetails_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHImageManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHImageManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHImageManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHImageManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHImageManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHImageRequestOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHImageRequestOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHImageRequestOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHImageRequestOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHImageRequestOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhoto_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhoto_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhoto_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhoto_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhoto_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoEditingContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoEditingContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoEditingContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoEditingContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoEditingContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoFrameWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoFrameWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoFrameWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoRequestOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoRequestOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoRequestOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoRequestOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLivePhotoRequestOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLocalIdentifierMapping_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLocalIdentifierMapping_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLocalIdentifierMapping_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLocalIdentifierMapping_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHLocalIdentifierMapping_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObject_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObject_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObject_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObject_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObject_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObjectChangeDetails_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObjectChangeDetails_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObjectChangeDetails_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObjectChangeDetails_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObjectChangeDetails_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObjectPlaceholder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObjectPlaceholder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObjectPlaceholder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObjectPlaceholder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHObjectPlaceholder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChangeFetchResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChangeFetchResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChangeFetchResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChangeFetchResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChangeFetchResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChangeToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChangeToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChangeToken_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChangeToken_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentChangeToken_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentObjectChangeDetails_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentObjectChangeDetails_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentObjectChangeDetails_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentObjectChangeDetails_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPersistentObjectChangeDetails_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibrary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibrary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibrary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibrary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibrary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibraryAvailabilityObserverWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibraryAvailabilityObserverWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibraryAvailabilityObserverWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibraryChangeObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibraryChangeObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibraryChangeObserver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibraryChangeObserver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibraryChangeObserver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibraryChangeObserverWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibraryChangeObserverWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHPhotoLibraryChangeObserverWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHVideoRequestOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHVideoRequestOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHVideoRequestOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHVideoRequestOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Photos.PHVideoRequestOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI__PHLivePhotoView.PHLivePhotoViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI__PHLivePhotoView.PHLivePhotoViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI__PHLivePhotoView.PHLivePhotoViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI__PHLivePhotoView.PHLivePhotoViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI__PHLivePhotoView.PHLivePhotoViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.IPHContentEditingController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.IPHContentEditingController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.IPHContentEditingController_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.IPHLivePhotoViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.IPHLivePhotoViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.IPHLivePhotoViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.IPHPickerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.IPHPickerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.IPHPickerViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHContentEditingControllerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHContentEditingControllerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHContentEditingControllerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHLivePhotoViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerUpdateConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerUpdateConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerUpdateConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerUpdateConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerUpdateConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PhotosUI.PHPickerViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.IPKPushRegistryDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.IPKPushRegistryDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.IPKPushRegistryDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushCredentials_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushCredentials_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushCredentials_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushCredentials_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushCredentials_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushPayload_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushPayload_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushPayload_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushPayload_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushPayload_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistryDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistryDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistryDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistryDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistryDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistryDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistryDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKPushRegistryDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKVoIPPushMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKVoIPPushMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKVoIPPushMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKVoIPPushMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:PushKit.PKVoIPPushMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook__QLPreviewController._QLPreviewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook__QLPreviewController._QLPreviewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook__QLPreviewController._QLPreviewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook__QLPreviewController._QLPreviewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook__QLPreviewController._QLPreviewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.ARQuickLookPreviewItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.ARQuickLookPreviewItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.ARQuickLookPreviewItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.ARQuickLookPreviewItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.ARQuickLookPreviewItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewControllerDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewControllerDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewControllerDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewingController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewingController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewingController_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.IQLPreviewItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLFilePreviewRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLFilePreviewRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLFilePreviewRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLFilePreviewRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLFilePreviewRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewingControllerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewingControllerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewingControllerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewReply_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewReply_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewReply_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewReply_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewReply_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewReplyAttachment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewReplyAttachment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewReplyAttachment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewReplyAttachment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewReplyAttachment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewSceneActivationConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewSceneActivationConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewSceneActivationConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewSceneActivationConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewSceneActivationConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewSceneOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewSceneOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewSceneOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewSceneOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLook.QLPreviewSceneOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLFileThumbnailRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLFileThumbnailRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLFileThumbnailRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLFileThumbnailRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLFileThumbnailRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailGenerationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailGenerationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailGenerationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailGenerationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailGenerationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailReply_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailReply_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailReply_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailReply_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailReply_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailRepresentation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailRepresentation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailRepresentation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailRepresentation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:QuickLookThumbnailing.QLThumbnailRepresentation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit__RPSystemBroadcastPickerView.RPSystemBroadcastPickerViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit__RPSystemBroadcastPickerView.RPSystemBroadcastPickerViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit__RPSystemBroadcastPickerView.RPSystemBroadcastPickerViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit__RPSystemBroadcastPickerView.RPSystemBroadcastPickerViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit__RPSystemBroadcastPickerView.RPSystemBroadcastPickerViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPBroadcastActivityViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPBroadcastActivityViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPBroadcastActivityViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPBroadcastControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPBroadcastControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPBroadcastControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPPreviewViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPPreviewViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPPreviewViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPScreenRecorderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPScreenRecorderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.IRPScreenRecorderDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastActivityViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastHandler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastHandler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastHandler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastMP4ClipHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastMP4ClipHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastMP4ClipHandler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastMP4ClipHandler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastMP4ClipHandler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastSampleHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastSampleHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastSampleHandler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastSampleHandler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPBroadcastSampleHandler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPPreviewViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorderDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorderDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorderDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorderDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorderDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPScreenRecorderDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPSystemBroadcastPickerView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPSystemBroadcastPickerView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPSystemBroadcastPickerView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPSystemBroadcastPickerView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ReplayKit.RPSystemBroadcastPickerView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.ISFAddToHomeScreenActivityItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.ISFAddToHomeScreenActivityItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.ISFAddToHomeScreenActivityItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.ISFSafariViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.ISFSafariViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.ISFSafariViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFAddToHomeScreenActivityItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFAddToHomeScreenActivityItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFAddToHomeScreenActivityItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFAuthenticationSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFAuthenticationSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFAuthenticationSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFAuthenticationSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFAuthenticationSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFContentBlockerManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFContentBlockerManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFContentBlockerManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFContentBlockerManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFContentBlockerManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFContentBlockerState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFContentBlockerState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFContentBlockerState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFContentBlockerState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFContentBlockerState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariExtensionManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariExtensionManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariExtensionManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariExtensionManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariExtensionManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariExtensionState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariExtensionState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariExtensionState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariExtensionState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariExtensionState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerActivityButton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerActivityButton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerActivityButton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerActivityButton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerActivityButton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDataStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDataStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDataStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDataStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDataStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerPrewarmingToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerPrewarmingToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerPrewarmingToken_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerPrewarmingToken_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SFSafariViewControllerPrewarmingToken_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SSReadingList_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SSReadingList_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SSReadingList_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SSReadingList_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SafariServices.SSReadingList_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit__SCNPhysicsWorld._SCNPhysicsContactDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit__SCNPhysicsWorld._SCNPhysicsContactDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit__SCNPhysicsWorld._SCNPhysicsContactDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit__SCNPhysicsWorld._SCNPhysicsContactDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit__SCNPhysicsWorld._SCNPhysicsContactDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit__SCNView.SCNViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit__SCNView.SCNViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit__SCNView.SCNViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit__SCNView.SCNViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit__SCNView.SCNViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNActionable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNActionable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNActionable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNAnimatable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNAnimatable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNAnimatable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNAnimationProtocol_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNAnimationProtocol_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNAnimationProtocol_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNAvoidOccluderConstraintDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNAvoidOccluderConstraintDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNAvoidOccluderConstraintDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNBoundingVolume_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNBoundingVolume_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNBoundingVolume_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNBufferStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNBufferStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNBufferStream_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNCameraControlConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNCameraControlConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNCameraControlConfiguration_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNCameraControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNCameraControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNCameraControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNNodeRendererDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNNodeRendererDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNNodeRendererDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNPhysicsContactDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNPhysicsContactDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNPhysicsContactDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNProgramDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNProgramDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNProgramDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNSceneExportDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNSceneExportDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNSceneExportDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNSceneRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNSceneRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNSceneRenderer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNSceneRendererDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNSceneRendererDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNSceneRendererDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNShadable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNShadable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNShadable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNTechniqueSupport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNTechniqueSupport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.ISCNTechniqueSupport_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAccelerationConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAccelerationConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAccelerationConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAccelerationConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAccelerationConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNActionable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNActionable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNActionable_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNActionable_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNActionable_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNActionableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNActionableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNActionableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimatable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimatable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimatable_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimatable_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimatable_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimatableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimatableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimatableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationPlayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationPlayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationPlayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationProtocolWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationProtocolWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAnimationProtocolWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAudioPlayer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAudioPlayer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAudioPlayer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAudioPlayer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAudioPlayer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAudioSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAudioSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAudioSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAudioSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAudioSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraintDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraintDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraintDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraintDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraintDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraintDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraintDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNAvoidOccluderConstraintDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBillboardConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBillboardConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBillboardConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBillboardConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBillboardConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBoundingVolume_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBoundingVolume_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBoundingVolume_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBoundingVolume_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBoundingVolume_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBoundingVolumeWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBoundingVolumeWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBoundingVolumeWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBox_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBox_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBox_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBox_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBox_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBufferStreamWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBufferStreamWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNBufferStreamWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCamera_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCamera_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCamera_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCamera_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCamera_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraControlConfigurationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraControlConfigurationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraControlConfigurationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCameraControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCapsule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCapsule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCapsule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCapsule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCapsule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCone_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCone_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCone_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCone_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCone_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCylinder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCylinder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCylinder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCylinder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNCylinder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNDistanceConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNDistanceConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNDistanceConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNDistanceConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNDistanceConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNFloor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNFloor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNFloor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNFloor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNFloor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometryElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometryElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometryElement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometryElement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometryElement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometrySource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometrySource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometrySource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometrySource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometrySource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometryTessellator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometryTessellator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometryTessellator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometryTessellator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNGeometryTessellator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNHitTestResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNHitTestResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNHitTestResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNHitTestResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNHitTestResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNIKConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNIKConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNIKConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNIKConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNIKConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLevelOfDetail_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLevelOfDetail_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLevelOfDetail_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLevelOfDetail_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLevelOfDetail_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLookAtConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLookAtConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLookAtConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLookAtConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNLookAtConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMaterial_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMaterial_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMaterial_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMaterial_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMaterial_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMaterialProperty_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMaterialProperty_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMaterialProperty_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMaterialProperty_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMaterialProperty_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMorpher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMorpher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMorpher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMorpher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNMorpher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNodeRendererDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNodeRendererDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNodeRendererDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNodeRendererDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNodeRendererDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNodeRendererDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNodeRendererDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNNodeRendererDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNParticlePropertyController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNParticlePropertyController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNParticlePropertyController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNParticlePropertyController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNParticlePropertyController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNParticleSystem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNParticleSystem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNParticleSystem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNParticleSystem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNParticleSystem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBallSocketJoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBallSocketJoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBallSocketJoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBallSocketJoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBallSocketJoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBody_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBody_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBody_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBody_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsBody_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsConeTwistJoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsConeTwistJoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsConeTwistJoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsConeTwistJoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsConeTwistJoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContact_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContact_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContact_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContact_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContact_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContactDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContactDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContactDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContactDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContactDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContactDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContactDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsContactDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsField_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsField_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsField_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsField_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsField_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsHingeJoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsHingeJoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsHingeJoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsHingeJoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsHingeJoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsShape_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsShape_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsShape_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsShape_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsShape_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsSliderJoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsSliderJoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsSliderJoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsSliderJoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsSliderJoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsVehicle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsVehicle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsVehicle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsVehicle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsVehicle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsVehicleWheel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsVehicleWheel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsVehicleWheel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsVehicleWheel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsVehicleWheel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsWorld_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsWorld_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsWorld_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsWorld_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPhysicsWorld_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPlane_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPlane_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPlane_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPlane_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPlane_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgram_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgram_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgram_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgram_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgram_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgramDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgramDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgramDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgramDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgramDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgramDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgramDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNProgramDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPyramid_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPyramid_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPyramid_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPyramid_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNPyramid_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNReferenceNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNReferenceNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNReferenceNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNReferenceNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNReferenceNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNReplicatorConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNReplicatorConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNReplicatorConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNReplicatorConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNReplicatorConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNScene_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNScene_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNScene_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNScene_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNScene_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneExportDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneExportDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneExportDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneExportDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneExportDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneExportDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneExportDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneExportDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRendererDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRendererDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRendererDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRendererDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRendererDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRendererDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRendererDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRendererDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRendererWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRendererWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneRendererWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSceneSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShadable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShadable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShadable_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShadable_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShadable_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShadableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShadableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShadableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShape_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShape_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShape_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShape_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNShape_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSkinner_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSkinner_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSkinner_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSkinner_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSkinner_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSliderConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSliderConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSliderConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSliderConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSliderConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSphere_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSphere_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSphere_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSphere_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNSphere_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechnique_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechnique_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechnique_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechnique_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechnique_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechniqueSupport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechniqueSupport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechniqueSupport_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechniqueSupport_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechniqueSupport_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechniqueSupportWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechniqueSupportWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTechniqueSupportWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNText_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNText_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNText_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNText_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNText_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTimingFunction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTimingFunction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTimingFunction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTimingFunction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTimingFunction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTorus_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTorus_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTorus_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTorus_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTorus_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTransaction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTransaction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTransaction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTransaction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTransaction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTransformConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTransformConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTransformConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTransformConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTransformConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTube_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTube_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTube_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTube_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNTube_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SceneKit.SCNView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCContentSharingPickerObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCContentSharingPickerObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCContentSharingPickerObserver_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCRecordingOutputDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCRecordingOutputDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCRecordingOutputDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCStreamDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCStreamDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCStreamDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCStreamOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCStreamOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.ISCStreamOutput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentFilter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentFilter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentFilter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentFilter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentFilter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPicker_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPicker_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPicker_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPicker_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPicker_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerObserver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerObserver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerObserver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerObserverWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerObserverWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCContentSharingPickerObserverWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCDisplay_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCDisplay_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCDisplay_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCDisplay_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCDisplay_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRecordingOutputDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRunningApplication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRunningApplication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRunningApplication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRunningApplication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCRunningApplication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotOutput_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotOutput_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCScreenshotOutput_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCShareableContent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCShareableContent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCShareableContent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCShareableContent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCShareableContent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCShareableContentInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCShareableContentInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCShareableContentInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCShareableContentInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCShareableContentInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStream_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStream_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStream_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamOutputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamOutputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCStreamOutputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCWindow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCWindow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCWindow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCWindow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenCaptureKit.SCWindow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STScreenTimeConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STScreenTimeConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STScreenTimeConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STScreenTimeConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STScreenTimeConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STScreenTimeConfigurationObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STScreenTimeConfigurationObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STScreenTimeConfigurationObserver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STScreenTimeConfigurationObserver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STScreenTimeConfigurationObserver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STWebHistory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STWebHistory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STWebHistory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STWebHistory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STWebHistory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STWebpageController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STWebpageController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STWebpageController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STWebpageController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ScreenTime.STWebpageController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.Authorization_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.Authorization_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.Authorization_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecAccessControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecAccessControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecAccessControl_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecCertificate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecCertificate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecCertificate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecCertificate2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecCertificate2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecCertificate2_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecIdentity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecIdentity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecIdentity_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecIdentity2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecIdentity2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecIdentity2_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecKey_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecKey_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecKey_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecPolicy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecPolicy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecPolicy_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecProtocolMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecProtocolMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecProtocolMetadata_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecProtocolOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecProtocolOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecProtocolOptions_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecTrust_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecTrust_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecTrust_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecTrust2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecTrust2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Security.SecTrust2_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SecurityUI.SFCertificatePresentation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SecurityUI.SFCertificatePresentation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SecurityUI.SFCertificatePresentation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SecurityUI.SFCertificatePresentation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SecurityUI.SFCertificatePresentation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensitiveContentAnalysis.SCSensitivityAnalysis_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensitiveContentAnalysis.SCSensitivityAnalysis_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensitiveContentAnalysis.SCSensitivityAnalysis_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensitiveContentAnalysis.SCSensitivityAnalysis_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensitiveContentAnalysis.SCSensitivityAnalysis_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensitiveContentAnalysis.SCSensitivityAnalyzer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensitiveContentAnalysis.SCSensitivityAnalyzer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensitiveContentAnalysis.SCSensitivityAnalyzer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensitiveContentAnalysis.SCSensitivityAnalyzer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensitiveContentAnalysis.SCSensitivityAnalyzer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.ISRSensorReaderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.ISRSensorReaderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.ISRSensorReaderDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibility_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibility_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibility_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibility_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibility_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibilityBackgroundSounds_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibilityBackgroundSounds_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibilityBackgroundSounds_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibilityBackgroundSounds_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibilityBackgroundSounds_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibilityHeadphoneAccommodations_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibilityHeadphoneAccommodations_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibilityHeadphoneAccommodations_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibilityHeadphoneAccommodations_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsAccessibilityHeadphoneAccommodations_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsMusicEQ_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsMusicEQ_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsMusicEQ_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsMusicEQ_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAcousticSettingsMusicEQ_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAmbientLightSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAmbientLightSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAmbientLightSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAmbientLightSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAmbientLightSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRApplicationUsage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRApplicationUsage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRApplicationUsage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRApplicationUsage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRApplicationUsage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAudioLevel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAudioLevel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAudioLevel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAudioLevel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRAudioLevel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDeletionRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDeletionRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDeletionRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDeletionRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDeletionRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDeviceUsageReport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDeviceUsageReport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDeviceUsageReport_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDeviceUsageReport_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRDeviceUsageReport_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramData_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramData_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramData_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramData_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramData_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRElectrocardiogramSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFaceMetrics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFaceMetrics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFaceMetrics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFaceMetrics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFaceMetrics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFaceMetricsExpression_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFaceMetricsExpression_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFaceMetricsExpression_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFaceMetricsExpression_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFaceMetricsExpression_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFetchRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFetchRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFetchRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFetchRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFetchRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFetchResult`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFetchResult`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFetchResult`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFetchResult`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRFetchResult`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRKeyboardMetrics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRKeyboardMetrics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRKeyboardMetrics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRKeyboardMetrics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRKeyboardMetrics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRKeyboardProbabilityMetric`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRKeyboardProbabilityMetric`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRKeyboardProbabilityMetric`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRKeyboardProbabilityMetric`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRKeyboardProbabilityMetric`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRMediaEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRMediaEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRMediaEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRMediaEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRMediaEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRMessagesUsageReport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRMessagesUsageReport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRMessagesUsageReport_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRMessagesUsageReport_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRMessagesUsageReport_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRNotificationUsage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRNotificationUsage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRNotificationUsage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRNotificationUsage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRNotificationUsage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhoneUsageReport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhoneUsageReport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhoneUsageReport_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhoneUsageReport_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhoneUsageReport_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramAccelerometerSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramAccelerometerSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramAccelerometerSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramAccelerometerSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramAccelerometerSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramOpticalSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramOpticalSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramOpticalSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramOpticalSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramOpticalSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramSample_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramSample_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramSample_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramSample_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRPhotoplethysmogramSample_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReader_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReader_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReader_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReader_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReader_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReaderDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReaderDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReaderDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReaderDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReaderDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReaderDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReaderDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSensorReaderDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSleepSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSleepSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSleepSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSleepSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSleepSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSpeechExpression_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSpeechExpression_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSpeechExpression_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSpeechExpression_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSpeechExpression_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSpeechMetrics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSpeechMetrics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSpeechMetrics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSpeechMetrics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSpeechMetrics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSupplementalCategory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSupplementalCategory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSupplementalCategory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSupplementalCategory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRSupplementalCategory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRTextInputSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRTextInputSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRTextInputSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRTextInputSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRTextInputSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRVisit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRVisit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRVisit_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRVisit_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRVisit_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWebUsage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWebUsage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWebUsage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWebUsage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWebUsage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristDetection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristDetection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristDetection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristDetection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristDetection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristTemperature_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristTemperature_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristTemperature_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristTemperature_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristTemperature_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristTemperatureSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristTemperatureSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristTemperatureSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristTemperatureSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SensorKit.SRWristTemperatureSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ServiceManagement.SMAppService_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ServiceManagement.SMAppService_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ServiceManagement.SMAppService_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ServiceManagement.SMAppService_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ServiceManagement.SMAppService_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou__SWAttributionView.SWAttributionViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou__SWAttributionView.SWAttributionViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou__SWAttributionView.SWAttributionViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou__SWAttributionView.SWAttributionViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou__SWAttributionView.SWAttributionViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou__SWCollaborationView.SWCollaborationViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou__SWCollaborationView.SWCollaborationViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou__SWCollaborationView.SWCollaborationViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou__SWCollaborationView.SWCollaborationViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou__SWCollaborationView.SWCollaborationViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.ISWCollaborationViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.ISWCollaborationViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.ISWCollaborationViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.ISWHighlightCenterDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.ISWHighlightCenterDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.ISWHighlightCenterDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.ISWHighlightEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.ISWHighlightEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.ISWHighlightEvent_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWAttributionView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWAttributionView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWAttributionView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWAttributionView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWAttributionView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationHighlight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationHighlight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationHighlight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationHighlight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationHighlight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWCollaborationViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenterDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenterDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenterDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenterDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenterDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenterDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenterDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightCenterDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightChangeEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightChangeEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightChangeEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightChangeEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightChangeEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightEventWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightEventWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightEventWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightMembershipEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightMembershipEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightMembershipEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightMembershipEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightMembershipEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightMentionEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightMentionEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightMentionEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightMentionEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightMentionEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightPersistenceEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightPersistenceEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightPersistenceEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightPersistenceEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWHighlightPersistenceEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWRemoveParticipantAlertController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWRemoveParticipantAlertController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWRemoveParticipantAlertController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWRemoveParticipantAlertController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYou.SWRemoveParticipantAlertController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.ISWCollaborationActionHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.ISWCollaborationActionHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.ISWCollaborationActionHandler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationActionHandlerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationActionHandlerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationActionHandlerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationCoordinator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationCoordinator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationCoordinator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOption_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOption_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOption_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOption_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOption_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOptionsGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOptionsGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOptionsGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOptionsGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOptionsGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOptionsPickerGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOptionsPickerGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOptionsPickerGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOptionsPickerGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationOptionsPickerGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationShareOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationShareOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationShareOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationShareOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWCollaborationShareOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPerson_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPerson_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPerson_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPerson_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPerson_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPersonIdentity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPersonIdentity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPersonIdentity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPersonIdentity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPersonIdentity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPersonIdentityProof_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPersonIdentityProof_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPersonIdentityProof_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPersonIdentityProof_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWPersonIdentityProof_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWSignedPersonIdentityProof_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWSignedPersonIdentityProof_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWSignedPersonIdentityProof_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWSignedPersonIdentityProof_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWSignedPersonIdentityProof_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWStartCollaborationAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWStartCollaborationAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWStartCollaborationAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWStartCollaborationAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWStartCollaborationAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWUpdateCollaborationParticipantsAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWUpdateCollaborationParticipantsAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWUpdateCollaborationParticipantsAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWUpdateCollaborationParticipantsAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SharedWithYouCore.SWUpdateCollaborationParticipantsAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.ISHSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.ISHSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.ISHSessionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHCatalog_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHCatalog_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHCatalog_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHCatalog_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHCatalog_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHCustomCatalog_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHCustomCatalog_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHCustomCatalog_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHCustomCatalog_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHCustomCatalog_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMatch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMatch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMatch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMatch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMatch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMatchedMediaItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMatchedMediaItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMatchedMediaItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMatchedMediaItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMatchedMediaItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMediaItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMediaItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMediaItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMediaItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMediaItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMediaLibrary_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMediaLibrary_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMediaLibrary_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMediaLibrary_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHMediaLibrary_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSessionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSessionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSessionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSessionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSessionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSessionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSessionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSessionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSignature_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSignature_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSignature_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSignature_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSignature_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSignatureGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSignatureGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSignatureGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSignatureGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ShazamKit.SHSignatureGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeServiceViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeServiceViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeServiceViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeServiceViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeServiceViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeSheetConfigurationItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeSheetConfigurationItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeSheetConfigurationItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeSheetConfigurationItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeSheetConfigurationItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLComposeViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Social.SLRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.ISNRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.ISNRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.ISNRequest_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.ISNResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.ISNResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.ISNResult_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.ISNResultsObserving_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.ISNResultsObserving_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.ISNResultsObserving_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNAudioFileAnalyzer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNAudioFileAnalyzer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNAudioFileAnalyzer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNAudioFileAnalyzer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNAudioFileAnalyzer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNAudioStreamAnalyzer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNAudioStreamAnalyzer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNAudioStreamAnalyzer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNAudioStreamAnalyzer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNAudioStreamAnalyzer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassificationResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassificationResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassificationResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassificationResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassificationResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassifySoundRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassifySoundRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassifySoundRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassifySoundRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNClassifySoundRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNRequestWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNRequestWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNRequestWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNResultsObservingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNResultsObservingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNResultsObservingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNResultWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNResultWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNResultWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNTimeDurationConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNTimeDurationConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNTimeDurationConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNTimeDurationConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SoundAnalysis.SNTimeDurationConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.ISFSpeechRecognitionTaskDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.ISFSpeechRecognitionTaskDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.ISFSpeechRecognitionTaskDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.ISFSpeechRecognizerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.ISFSpeechRecognizerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.ISFSpeechRecognizerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFAcousticFeature_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFAcousticFeature_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFAcousticFeature_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFAcousticFeature_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFAcousticFeature_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechAudioBufferRecognitionRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechAudioBufferRecognitionRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechAudioBufferRecognitionRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechAudioBufferRecognitionRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechAudioBufferRecognitionRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechLanguageModel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechLanguageModel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechLanguageModel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechLanguageModel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechLanguageModel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechLanguageModelConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechLanguageModelConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechLanguageModelConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechLanguageModelConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechLanguageModelConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionMetadata_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionMetadata_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionMetadata_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionMetadata_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionMetadata_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTask_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTask_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTask_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTaskDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTaskDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTaskDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTaskDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTaskDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTaskDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTaskDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognitionTaskDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechRecognizerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechUrlRecognitionRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechUrlRecognitionRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechUrlRecognitionRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechUrlRecognitionRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFSpeechUrlRecognitionRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFTranscription_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFTranscription_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFTranscription_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFTranscription_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFTranscription_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFTranscriptionSegment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFTranscriptionSegment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFTranscriptionSegment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFTranscriptionSegment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFTranscriptionSegment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFVoiceAnalytics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFVoiceAnalytics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFVoiceAnalytics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFVoiceAnalytics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Speech.SFVoiceAnalytics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit__SKPhysicsWorld._SKPhysicsContactDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit__SKPhysicsWorld._SKPhysicsContactDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit__SKPhysicsWorld._SKPhysicsContactDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit__SKPhysicsWorld._SKPhysicsContactDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit__SKPhysicsWorld._SKPhysicsContactDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit__SKView.SKViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit__SKView.SKViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit__SKView.SKViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit__SKView.SKViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit__SKView.SKViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKPhysicsContactDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKPhysicsContactDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKPhysicsContactDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKSceneDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKSceneDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKSceneDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKWarpable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKWarpable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.ISKWarpable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SK3DNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SK3DNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SK3DNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SK3DNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SK3DNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAttribute_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAttribute_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAttribute_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAttribute_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAttribute_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAttributeValue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAttributeValue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAttributeValue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAttributeValue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAttributeValue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAudioNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAudioNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAudioNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAudioNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKAudioNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKCameraNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKCameraNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKCameraNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKCameraNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKCameraNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKCropNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKCropNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKCropNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKCropNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKCropNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKEffectNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKEffectNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKEffectNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKEffectNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKEffectNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKEmitterNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKEmitterNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKEmitterNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKEmitterNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKEmitterNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKFieldNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKFieldNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKFieldNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKFieldNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKFieldNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKKeyframeSequence_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKKeyframeSequence_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKKeyframeSequence_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKKeyframeSequence_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKKeyframeSequence_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKLabelNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKLabelNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKLabelNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKLabelNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKLabelNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKLightNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKLightNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKLightNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKLightNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKLightNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKMutableTexture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKMutableTexture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKMutableTexture_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKMutableTexture_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKMutableTexture_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsBody_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsBody_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsBody_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsBody_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsBody_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContact_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContact_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContact_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContact_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContact_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContactDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContactDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContactDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContactDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContactDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContactDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContactDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsContactDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointFixed_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointFixed_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointFixed_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointFixed_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointFixed_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointLimit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointLimit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointLimit_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointLimit_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointLimit_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointPin_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointPin_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointPin_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointPin_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointPin_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointSliding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointSliding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointSliding_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointSliding_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointSliding_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointSpring_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointSpring_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointSpring_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointSpring_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsJointSpring_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsWorld_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsWorld_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsWorld_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsWorld_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKPhysicsWorld_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKReachConstraints_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKReachConstraints_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKReachConstraints_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKReachConstraints_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKReachConstraints_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKReferenceNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKReferenceNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKReferenceNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKReferenceNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKReferenceNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRegion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRegion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRegion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRegion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRegion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKScene_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKScene_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKScene_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKScene_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKScene_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSceneDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSceneDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSceneDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSceneDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSceneDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSceneDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSceneDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSceneDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKShader_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKShader_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKShader_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKShader_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKShader_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKShapeNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKShapeNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKShapeNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKShapeNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKShapeNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSpriteNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSpriteNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSpriteNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSpriteNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKSpriteNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTexture_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTexture_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTexture_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTexture_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTexture_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTextureAtlas_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTextureAtlas_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTextureAtlas_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTextureAtlas_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTextureAtlas_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileGroupRule_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileGroupRule_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileGroupRule_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileGroupRule_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileGroupRule_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileMapNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileMapNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileMapNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileMapNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileMapNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileSet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileSet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileSet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileSet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTileSet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTransformNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTransformNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTransformNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTransformNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTransformNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKUniform_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKUniform_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKUniform_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKUniform_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKUniform_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKVideoNode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKVideoNode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKVideoNode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKVideoNode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKVideoNode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpGeometry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpGeometry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpGeometry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpGeometry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpGeometry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpGeometryGrid_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpGeometryGrid_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpGeometryGrid_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpGeometryGrid_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:SpriteKit.SKWarpGeometryGrid_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKProductsRequest._SKProductsRequestDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKProductsRequest._SKProductsRequestDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKProductsRequest._SKProductsRequestDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKProductsRequest._SKProductsRequestDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKProductsRequest._SKProductsRequestDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKRequest._SKRequestDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKRequest._SKRequestDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKRequest._SKRequestDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKRequest._SKRequestDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKRequest._SKRequestDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKStoreProductViewController._SKStoreProductViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKStoreProductViewController._SKStoreProductViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKStoreProductViewController._SKStoreProductViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKStoreProductViewController._SKStoreProductViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit__SKStoreProductViewController._SKStoreProductViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKCloudServiceSetupViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKCloudServiceSetupViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKCloudServiceSetupViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKDownloaderExtension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKDownloaderExtension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKDownloaderExtension_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKOverlayDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKOverlayDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKOverlayDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKPaymentQueueDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKPaymentQueueDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKPaymentQueueDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKPaymentTransactionObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKPaymentTransactionObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKPaymentTransactionObserver_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKProductsRequestDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKProductsRequestDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKProductsRequestDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKRequestDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKRequestDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKRequestDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKStoreProductViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKStoreProductViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.ISKStoreProductViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKAdImpression_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKAdImpression_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKAdImpression_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKAdImpression_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKAdImpression_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKAdNetwork_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKAdNetwork_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKAdNetwork_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKAdNetwork_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKAdNetwork_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKArcadeService_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKArcadeService_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKArcadeService_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKArcadeService_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKArcadeService_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKCloudServiceSetupViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKDownload_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKDownload_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKDownload_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKDownload_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKDownload_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKDownloaderExtensionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKDownloaderExtensionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKDownloaderExtensionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKMutablePayment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKMutablePayment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKMutablePayment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKMutablePayment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKMutablePayment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlay_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlay_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlay_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlay_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlay_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayAppClipConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayAppClipConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayAppClipConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayAppClipConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayAppClipConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayAppConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayAppConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayAppConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayAppConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayAppConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayTransitionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayTransitionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayTransitionContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayTransitionContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKOverlayTransitionContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPayment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPayment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPayment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPayment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPayment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentDiscount_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentDiscount_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentDiscount_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentDiscount_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentDiscount_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueueDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueueDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueueDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueueDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueueDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueueDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueueDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentQueueDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransaction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransaction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransaction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransaction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransaction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransactionObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransactionObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransactionObserver_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransactionObserver_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransactionObserver_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransactionObserverWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransactionObserverWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKPaymentTransactionObserverWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProduct_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProduct_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProduct_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProduct_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProduct_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductDiscount_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductDiscount_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductDiscount_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductDiscount_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductDiscount_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequestDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequestDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequestDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequestDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequestDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequestDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequestDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsRequestDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductsResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductStorePromotionController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductStorePromotionController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductStorePromotionController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductStorePromotionController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductStorePromotionController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductSubscriptionPeriod_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductSubscriptionPeriod_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductSubscriptionPeriod_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductSubscriptionPeriod_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKProductSubscriptionPeriod_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKReceiptRefreshRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKReceiptRefreshRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKReceiptRefreshRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKReceiptRefreshRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKReceiptRefreshRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequestDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequestDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequestDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequestDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequestDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequestDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequestDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKRequestDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStorefront_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStorefront_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStorefront_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStorefront_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStorefront_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreProductViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreReviewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreReviewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreReviewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreReviewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.SKStoreReviewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.XamarinSwiftFunctions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.XamarinSwiftFunctions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.XamarinSwiftFunctions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.XamarinSwiftFunctions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:StoreKit.XamarinSwiftFunctions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolAppearEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolAppearEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolAppearEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolAppearEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolAppearEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolAutomaticContentTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolAutomaticContentTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolAutomaticContentTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolAutomaticContentTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolAutomaticContentTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolBounceEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolBounceEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolBounceEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolBounceEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolBounceEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolBreatheEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolBreatheEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolBreatheEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolBreatheEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolBreatheEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolContentTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolContentTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolContentTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolContentTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolContentTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDisappearEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDisappearEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDisappearEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDisappearEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDisappearEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDrawOffEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDrawOffEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDrawOffEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDrawOffEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDrawOffEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDrawOnEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDrawOnEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDrawOnEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDrawOnEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolDrawOnEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffectOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffectOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffectOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffectOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffectOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffectOptionsRepeatBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffectOptionsRepeatBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffectOptionsRepeatBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffectOptionsRepeatBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolEffectOptionsRepeatBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolMagicReplaceContentTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolMagicReplaceContentTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolMagicReplaceContentTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolMagicReplaceContentTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolMagicReplaceContentTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolPulseEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolPulseEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolPulseEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolPulseEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolPulseEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolReplaceContentTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolReplaceContentTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolReplaceContentTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolReplaceContentTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolReplaceContentTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolRotateEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolRotateEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolRotateEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolRotateEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolRotateEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolScaleEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolScaleEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolScaleEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolScaleEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolScaleEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolVariableColorEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolVariableColorEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolVariableColorEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolVariableColorEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolVariableColorEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolWiggleEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolWiggleEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolWiggleEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolWiggleEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Symbols.NSSymbolWiggleEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:System__Net__Http__NSUrlSessionHandler.NSUrlSessionHandlerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:System__Net__Http__NSUrlSessionHandler.NSUrlSessionHandlerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:System__Net__Http__NSUrlSessionHandler.NSUrlSessionHandlerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:System__Net__Http__NSUrlSessionHandler.NSUrlSessionHandlerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:System__Net__Http__NSUrlSessionHandler.NSUrlSessionHandlerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:System__Net__Http__NSUrlSessionHandler.WrappedNSInputStream_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:System__Net__Http__NSUrlSessionHandler.WrappedNSInputStream_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:System__Net__Http__NSUrlSessionHandler.WrappedNSInputStream_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:System__Net__Http__NSUrlSessionHandler.WrappedNSInputStream_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:System__Net__Http__NSUrlSessionHandler.WrappedNSInputStream_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute
+_Microsoft.MacCatalyst.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ThreadNetwork.THClient_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ThreadNetwork.THClient_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ThreadNetwork.THClient_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ThreadNetwork.THClient_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ThreadNetwork.THClient_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:ThreadNetwork.THCredentials_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:ThreadNetwork.THCredentials_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:ThreadNetwork.THCredentials_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:ThreadNetwork.THCredentials_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:ThreadNetwork.THCredentials_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__NSTextStorage._NSTextStorageDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__NSTextStorage._NSTextStorageDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__NSTextStorage._NSTextStorageDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__NSTextStorage._NSTextStorageDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__NSTextStorage._NSTextStorageDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAccelerometer._UIAccelerometerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAccelerometer._UIAccelerometerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAccelerometer._UIAccelerometerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAccelerometer._UIAccelerometerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAccelerometer._UIAccelerometerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAccessibilityCustomAction.FuncBoolDispatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAccessibilityCustomAction.FuncBoolDispatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAccessibilityCustomAction.FuncBoolDispatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAccessibilityCustomAction.FuncBoolDispatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAccessibilityCustomAction.FuncBoolDispatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActionSheet._UIActionSheetDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActionSheet._UIActionSheetDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActionSheet._UIActionSheetDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActionSheet._UIActionSheetDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActionSheet._UIActionSheetDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActionSheet.UIActionSheetAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActionSheet.UIActionSheetAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActionSheet.UIActionSheetAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActionSheet.UIActionSheetAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActionSheet.UIActionSheetAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActivityIndicatorView.UIActivityIndicatorViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActivityIndicatorView.UIActivityIndicatorViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActivityIndicatorView.UIActivityIndicatorViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActivityIndicatorView.UIActivityIndicatorViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIActivityIndicatorView.UIActivityIndicatorViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAlertView._UIAlertViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAlertView._UIAlertViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAlertView._UIAlertViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAlertView._UIAlertViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAlertView._UIAlertViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAlertView.UIAlertViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAlertView.UIAlertViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAlertView.UIAlertViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAlertView.UIAlertViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIAlertView.UIAlertViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBackgroundExtensionView.UIBackgroundExtensionViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBackgroundExtensionView.UIBackgroundExtensionViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBackgroundExtensionView.UIBackgroundExtensionViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBackgroundExtensionView.UIBackgroundExtensionViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBackgroundExtensionView.UIBackgroundExtensionViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarButtonItem.Callback_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarButtonItem.Callback_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarButtonItem.Callback_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarButtonItem.Callback_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarButtonItem.Callback_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarButtonItem.UIBarButtonItemAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarButtonItem.UIBarButtonItemAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarButtonItem.UIBarButtonItemAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarButtonItem.UIBarButtonItemAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarButtonItem.UIBarButtonItemAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarItem.UIBarItemAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarItem.UIBarItemAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarItem.UIBarItemAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarItem.UIBarItemAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIBarItem.UIBarItemAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIButton.UIButtonAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIButton.UIButtonAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIButton.UIButtonAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIButton.UIButtonAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIButton.UIButtonAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICalendarView.UICalendarViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICalendarView.UICalendarViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICalendarView.UICalendarViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICalendarView.UICalendarViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICalendarView.UICalendarViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionReusableView.UICollectionReusableViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionReusableView.UICollectionReusableViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionReusableView.UICollectionReusableViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionReusableView.UICollectionReusableViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionReusableView.UICollectionReusableViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionView.UICollectionViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionView.UICollectionViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionView.UICollectionViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionView.UICollectionViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionView.UICollectionViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionViewCell.UICollectionViewCellAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionViewCell.UICollectionViewCellAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionViewCell.UICollectionViewCellAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionViewCell.UICollectionViewCellAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionViewCell.UICollectionViewCellAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionViewListCell.UICollectionViewListCellAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionViewListCell.UICollectionViewListCellAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionViewListCell.UICollectionViewListCellAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionViewListCell.UICollectionViewListCellAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollectionViewListCell.UICollectionViewListCellAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollisionBehavior._UICollisionBehaviorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollisionBehavior._UICollisionBehaviorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollisionBehavior._UICollisionBehaviorDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollisionBehavior._UICollisionBehaviorDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UICollisionBehavior._UICollisionBehaviorDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIColorWell.UIColorWellAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIColorWell.UIColorWellAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIColorWell.UIColorWellAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIColorWell.UIColorWellAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIColorWell.UIColorWellAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIContentUnavailableView.UIContentUnavailableViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIContentUnavailableView.UIContentUnavailableViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIContentUnavailableView.UIContentUnavailableViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIContentUnavailableView.UIContentUnavailableViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIContentUnavailableView.UIContentUnavailableViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIControl.UIControlAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIControl.UIControlAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIControl.UIControlAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIControl.UIControlAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIControl.UIControlAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDatePicker.UIDatePickerAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDatePicker.UIDatePickerAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDatePicker.UIDatePickerAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDatePicker.UIDatePickerAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDatePicker.UIDatePickerAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentInteractionController._UIDocumentInteractionControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentInteractionController._UIDocumentInteractionControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentInteractionController._UIDocumentInteractionControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentInteractionController._UIDocumentInteractionControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentInteractionController._UIDocumentInteractionControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentMenuViewController._UIDocumentMenuDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentMenuViewController._UIDocumentMenuDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentMenuViewController._UIDocumentMenuDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentMenuViewController._UIDocumentMenuDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentMenuViewController._UIDocumentMenuDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentPickerViewController._UIDocumentPickerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentPickerViewController._UIDocumentPickerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentPickerViewController._UIDocumentPickerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentPickerViewController._UIDocumentPickerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIDocumentPickerViewController._UIDocumentPickerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIEventAttributionView.UIEventAttributionViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIEventAttributionView.UIEventAttributionViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIEventAttributionView.UIEventAttributionViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIEventAttributionView.UIEventAttributionViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIEventAttributionView.UIEventAttributionViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer._UIGestureRecognizerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer._UIGestureRecognizerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer._UIGestureRecognizerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer._UIGestureRecognizerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer._UIGestureRecognizerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.Callback`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.Callback`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.Callback`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.Callback`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.Callback`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.ParameterlessDispatch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.ParameterlessDispatch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.ParameterlessDispatch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.ParameterlessDispatch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.ParameterlessDispatch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.ParametrizedDispatch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.ParametrizedDispatch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.ParametrizedDispatch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.ParametrizedDispatch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.ParametrizedDispatch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.Token_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.Token_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.Token_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.Token_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIGestureRecognizer.Token_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIImagePickerController._UIImagePickerControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIImagePickerController._UIImagePickerControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIImagePickerController._UIImagePickerControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIImagePickerController._UIImagePickerControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIImagePickerController._UIImagePickerControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIImageView.UIImageViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIImageView.UIImageViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIImageView.UIImageViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIImageView.UIImageViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIImageView.UIImageViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIInputView.UIInputViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIInputView.UIInputViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIInputView.UIInputViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIInputView.UIInputViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIInputView.UIInputViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UILabel.UILabelAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UILabel.UILabelAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UILabel.UILabelAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UILabel.UILabelAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UILabel.UILabelAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIListContentView.UIListContentViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIListContentView.UIListContentViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIListContentView.UIListContentViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIListContentView.UIListContentViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIListContentView.UIListContentViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UINavigationBar.UINavigationBarAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UINavigationBar.UINavigationBarAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UINavigationBar.UINavigationBarAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UINavigationBar.UINavigationBarAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UINavigationBar.UINavigationBarAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageControl.UIPageControlAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageControl.UIPageControlAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageControl.UIPageControlAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageControl.UIPageControlAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageControl.UIPageControlAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageViewController._UIPageViewControllerDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageViewController._UIPageViewControllerDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageViewController._UIPageViewControllerDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageViewController._UIPageViewControllerDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageViewController._UIPageViewControllerDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageViewController._UIPageViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageViewController._UIPageViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageViewController._UIPageViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageViewController._UIPageViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPageViewController._UIPageViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPasteControl.UIPasteControlAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPasteControl.UIPasteControlAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPasteControl.UIPasteControlAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPasteControl.UIPasteControlAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPasteControl.UIPasteControlAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPickerView.UIPickerViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPickerView.UIPickerViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPickerView.UIPickerViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPickerView.UIPickerViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPickerView.UIPickerViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverBackgroundView.UIPopoverBackgroundViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverController._UIPopoverControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverController._UIPopoverControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverController._UIPopoverControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverController._UIPopoverControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverController._UIPopoverControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverPresentationController._UIPopoverPresentationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverPresentationController._UIPopoverPresentationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverPresentationController._UIPopoverPresentationControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverPresentationController._UIPopoverPresentationControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPopoverPresentationController._UIPopoverPresentationControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPreviewInteraction._UIPreviewInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPreviewInteraction._UIPreviewInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPreviewInteraction._UIPreviewInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPreviewInteraction._UIPreviewInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPreviewInteraction._UIPreviewInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPrintInteractionController._UIPrintInteractionControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPrintInteractionController._UIPrintInteractionControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPrintInteractionController._UIPrintInteractionControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPrintInteractionController._UIPrintInteractionControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIPrintInteractionController._UIPrintInteractionControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIProgressView.UIProgressViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIProgressView.UIProgressViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIProgressView.UIProgressViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIProgressView.UIProgressViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIProgressView.UIProgressViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIRefreshControl.UIRefreshControlAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIRefreshControl.UIRefreshControlAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIRefreshControl.UIRefreshControlAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIRefreshControl.UIRefreshControlAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIRefreshControl.UIRefreshControlAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIScrollView._UIScrollViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIScrollView._UIScrollViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIScrollView._UIScrollViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIScrollView._UIScrollViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIScrollView._UIScrollViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIScrollView.UIScrollViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIScrollView.UIScrollViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIScrollView.UIScrollViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIScrollView.UIScrollViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIScrollView.UIScrollViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchBar._UISearchBarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchBar._UISearchBarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchBar._UISearchBarDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchBar._UISearchBarDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchBar._UISearchBarDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchBar.UISearchBarAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchBar.UISearchBarAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchBar.UISearchBarAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchBar.UISearchBarAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchBar.UISearchBarAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchController.__Xamarin_UISearchResultsUpdating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchController.__Xamarin_UISearchResultsUpdating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchController.__Xamarin_UISearchResultsUpdating_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchController.__Xamarin_UISearchResultsUpdating_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchController.__Xamarin_UISearchResultsUpdating_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchTextField.UISearchTextFieldAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchTextField.UISearchTextFieldAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchTextField.UISearchTextFieldAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchTextField.UISearchTextFieldAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISearchTextField.UISearchTextFieldAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISegmentedControl.UISegmentedControlAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISegmentedControl.UISegmentedControlAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISegmentedControl.UISegmentedControlAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISegmentedControl.UISegmentedControlAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISegmentedControl.UISegmentedControlAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISlider.UISliderAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISlider.UISliderAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISlider.UISliderAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISlider.UISliderAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISlider.UISliderAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISplitViewController._UISplitViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISplitViewController._UISplitViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISplitViewController._UISplitViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISplitViewController._UISplitViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISplitViewController._UISplitViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStackView.UIStackViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStackView.UIStackViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStackView.UIStackViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStackView.UIStackViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStackView.UIStackViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStandardTextCursorView.UIStandardTextCursorViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStandardTextCursorView.UIStandardTextCursorViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStandardTextCursorView.UIStandardTextCursorViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStandardTextCursorView.UIStandardTextCursorViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStandardTextCursorView.UIStandardTextCursorViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStepper.UIStepperAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStepper.UIStepperAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStepper.UIStepperAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStepper.UIStepperAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIStepper.UIStepperAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISwitch.UISwitchAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISwitch.UISwitchAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISwitch.UISwitchAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISwitch.UISwitchAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UISwitch.UISwitchAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBar._UITabBarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBar._UITabBarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBar._UITabBarDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBar._UITabBarDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBar._UITabBarDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBar.UITabBarAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBar.UITabBarAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBar.UITabBarAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBar.UITabBarAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBar.UITabBarAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBarController._UITabBarControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBarController._UITabBarControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBarController._UITabBarControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBarController._UITabBarControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBarController._UITabBarControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBarItem.UITabBarItemAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBarItem.UITabBarItemAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBarItem.UITabBarItemAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBarItem.UITabBarItemAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITabBarItem.UITabBarItemAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableView.UITableViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableView.UITableViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableView.UITableViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableView.UITableViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableView.UITableViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableViewCell.UITableViewCellAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableViewCell.UITableViewCellAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableViewCell.UITableViewCellAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableViewCell.UITableViewCellAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableViewCell.UITableViewCellAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableViewHeaderFooterView.UITableViewHeaderFooterViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableViewHeaderFooterView.UITableViewHeaderFooterViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableViewHeaderFooterView.UITableViewHeaderFooterViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableViewHeaderFooterView.UITableViewHeaderFooterViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITableViewHeaderFooterView.UITableViewHeaderFooterViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextField._UITextFieldDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextField._UITextFieldDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextField._UITextFieldDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextField._UITextFieldDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextField._UITextFieldDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextField.UITextFieldAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextField.UITextFieldAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextField.UITextFieldAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextField.UITextFieldAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextField.UITextFieldAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextView._UITextViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextView._UITextViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextView._UITextViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextView._UITextViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextView._UITextViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextView.UITextViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextView.UITextViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextView.UITextViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextView.UITextViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UITextView.UITextViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIToolbar.UIToolbarAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIToolbar.UIToolbarAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIToolbar.UIToolbarAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIToolbar.UIToolbarAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIToolbar.UIToolbarAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIVideoEditorController._UIVideoEditorControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIVideoEditorController._UIVideoEditorControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIVideoEditorController._UIVideoEditorControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIVideoEditorController._UIVideoEditorControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIVideoEditorController._UIVideoEditorControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIView._UIViewStaticCallback_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIView._UIViewStaticCallback_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIView._UIViewStaticCallback_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIView._UIViewStaticCallback_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIView._UIViewStaticCallback_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIView.UIViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIView.UIViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIView.UIViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIView.UIViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIView.UIViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIVisualEffectView.UIVisualEffectViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIVisualEffectView.UIVisualEffectViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIVisualEffectView.UIVisualEffectViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIVisualEffectView.UIVisualEffectViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIVisualEffectView.UIVisualEffectViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIWindow.UIWindowAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIWindow.UIWindowAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIWindow.UIWindowAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIWindow.UIWindowAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit__UIWindow.UIWindowAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSCollectionLayoutContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSCollectionLayoutContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSCollectionLayoutContainer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSCollectionLayoutEnvironment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSCollectionLayoutEnvironment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSCollectionLayoutEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSCollectionLayoutVisibleItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSCollectionLayoutVisibleItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSCollectionLayoutVisibleItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSLayoutManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSLayoutManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSLayoutManagerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextAttachmentContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextAttachmentContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextAttachmentContainer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextAttachmentLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextAttachmentLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextAttachmentLayout_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextContentManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextContentManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextContentManagerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextContentStorageDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextContentStorageDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextContentStorageDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextElementProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextElementProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextElementProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextLayoutManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextLayoutManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextLayoutManagerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextLayoutOrientationProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextLayoutOrientationProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextLayoutOrientationProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextLocation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextLocation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextLocation_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextSelectionDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextSelectionDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextSelectionDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextStorageDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextStorageDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextStorageDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextStorageObserving_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextStorageObserving_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextStorageObserving_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextViewportLayoutControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextViewportLayoutControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.INSTextViewportLayoutControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccelerometerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccelerometerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccelerometerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContainerDataTable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContainerDataTable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContainerDataTable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContainerDataTableCell_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContainerDataTableCell_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContainerDataTableCell_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityContentSizeCategoryImageAdjusting_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityIdentification_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityReadingContent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityReadingContent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAccessibilityReadingContent_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActionSheetDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActionSheetDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActionSheetDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationReading_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationReading_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemsConfigurationReading_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIActivityItemSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAdaptivePresentationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAdaptivePresentationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAdaptivePresentationControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAlertViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAlertViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAlertViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearance_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIAppearanceContainer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIApplicationDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIBarPositioning_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIBarPositioning_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIBarPositioning_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIBarPositioningDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIBarPositioningDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIBarPositioningDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarSelectionMultiDateDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarSelectionMultiDateDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarSelectionMultiDateDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarSelectionSingleDateDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarSelectionSingleDateDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarSelectionSingleDateDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarSelectionWeekOfYearDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarSelectionWeekOfYearDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarSelectionWeekOfYearDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICalendarViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICGFloatTraitDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICGFloatTraitDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICGFloatTraitDefinition_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICloudSharingControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICloudSharingControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICloudSharingControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDataSourcePrefetching_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDataSourcePrefetching_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDataSourcePrefetching_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDelegateFlowLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDelegateFlowLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDelegateFlowLayout_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDragDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDragDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDragDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropCoordinator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropPlaceholderContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropPlaceholderContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollectionViewDropPlaceholderContext_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollisionBehaviorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollisionBehaviorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICollisionBehaviorDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIColorPickerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIColorPickerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIColorPickerViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIConfigurationState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIConfigurationState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIConfigurationState_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentConfiguration_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentContainer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentSizeCategoryAdjusting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentSizeCategoryAdjusting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentSizeCategoryAdjusting_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContentView_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionAnimating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionAnimating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionAnimating_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionCommitAnimating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionCommitAnimating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionCommitAnimating_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIContextMenuInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUICoordinateSpace_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDataSourceModelAssociation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDataSourceModelAssociation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDataSourceModelAssociation_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDataSourceTranslating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDataSourceTranslating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDataSourceTranslating_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentBrowserViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentBrowserViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentBrowserViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentInteractionControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentInteractionControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentInteractionControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentMenuDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentMenuDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentMenuDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentPickerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentPickerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDocumentPickerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragAnimating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragAnimating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragAnimating_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragDropSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragDropSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragDropSession_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDragSession_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDropInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDropInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDropInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDropSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDropSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDropSession_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicAnimatorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicAnimatorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicAnimatorDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIDynamicItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIEditMenuInteractionAnimating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIEditMenuInteractionAnimating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIEditMenuInteractionAnimating_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIEditMenuInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIEditMenuInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIEditMenuInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFindInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFindInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFindInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusAnimationContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusAnimationContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusAnimationContext_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusDebuggerOutput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusDebuggerOutput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusDebuggerOutput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemContainer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemScrollableContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemScrollableContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFocusItemScrollableContainer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFontPickerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFontPickerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIFontPickerViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIGestureRecognizerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIGestureRecognizerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIGestureRecognizerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIGuidedAccessRestrictionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIGuidedAccessRestrictionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIGuidedAccessRestrictionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIHoverEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIHoverEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIHoverEffect_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIImagePickerControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIImagePickerControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIImagePickerControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIIndirectScribbleInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIIndirectScribbleInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIIndirectScribbleInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIInputViewAudioFeedback_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIInputViewAudioFeedback_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIInputViewAudioFeedback_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIInteraction_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIItemProviderPresentationSizeProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIItemProviderPresentationSizeProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIItemProviderPresentationSizeProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIItemProviderReadingAugmentationProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIItemProviderReadingAugmentationProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIItemProviderReadingAugmentationProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIKeyInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIKeyInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIKeyInput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILargeContentViewerItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILayoutGuideAspectFitting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILayoutGuideAspectFitting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILayoutGuideAspectFitting_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILayoutSupport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILayoutSupport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILayoutSupport_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILetterformAwareAdjusting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILetterformAwareAdjusting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILetterformAwareAdjusting_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILookToDictateCapable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILookToDictateCapable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUILookToDictateCapable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIMenuBuilder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIMenuBuilder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIMenuBuilder_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIMenuLeaf_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIMenuLeaf_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIMenuLeaf_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIMutableTraits_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIMutableTraits_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIMutableTraits_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINavigationBarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINavigationBarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINavigationBarDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINavigationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINavigationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINavigationControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINavigationItemRenameDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINavigationItemRenameDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINavigationItemRenameDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINSIntegerTraitDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINSIntegerTraitDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUINSIntegerTraitDefinition_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIObjectRestoration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIObjectRestoration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIObjectRestoration_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIObjectTraitDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIObjectTraitDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIObjectTraitDefinition_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageControlProgressDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageControlProgressDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageControlProgressDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageControlTimerProgressDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageControlTimerProgressDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageControlTimerProgressDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageViewControllerDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageViewControllerDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageViewControllerDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPageViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPasteConfigurationSupporting_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPencilInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPencilInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPencilInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPickerViewAccessibilityDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPickerViewAccessibilityDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPickerViewAccessibilityDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPickerViewDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPickerViewDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPickerViewDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPickerViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPickerViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPickerViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPointerInteractionAnimating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPointerInteractionAnimating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPointerInteractionAnimating_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPointerInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPointerInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPointerInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverBackgroundViewMethods_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverBackgroundViewMethods_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverBackgroundViewMethods_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPopoverPresentationControllerSourceItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPreviewActionItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPreviewActionItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPreviewActionItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPreviewInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPreviewInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPreviewInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPrinterPickerControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPrinterPickerControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPrinterPickerControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPrintInteractionControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPrintInteractionControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIPrintInteractionControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIResponderStandardEditActions_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISceneDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISceneDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISceneDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScreenshotServiceDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScreenshotServiceDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScreenshotServiceDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScribbleInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScribbleInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScribbleInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScrollViewAccessibilityDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScrollViewAccessibilityDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScrollViewAccessibilityDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScrollViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScrollViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIScrollViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchBarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchBarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchBarDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchDisplayDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchDisplayDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchDisplayDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchResultsUpdating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchResultsUpdating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchResultsUpdating_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchSuggestion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchSuggestion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchSuggestion_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchTextFieldDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchTextFieldDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchTextFieldDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchTextFieldPasteItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchTextFieldPasteItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISearchTextFieldPasteItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIShapeProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIShapeProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIShapeProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISheetPresentationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISheetPresentationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISheetPresentationControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISheetPresentationControllerDetentResolutionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISheetPresentationControllerDetentResolutionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISheetPresentationControllerDetentResolutionContext_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISplitViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISplitViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISplitViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionBehavior_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionContext_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionEffect_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUISpringLoadedInteractionSupporting_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIStateRestoring_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIStateRestoring_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIStateRestoring_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarControllerSidebarAnimating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarControllerSidebarAnimating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarControllerSidebarAnimating_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarControllerSidebarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarControllerSidebarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarControllerSidebarDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITabBarDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDataSource_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDataSourcePrefetching_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDataSourcePrefetching_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDataSourcePrefetching_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDragDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDragDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDragDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropCoordinator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropPlaceholderContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropPlaceholderContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITableViewDropPlaceholderContext_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextCursorView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextCursorView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextCursorView_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDocumentProxy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDocumentProxy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDocumentProxy_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDragDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDragDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDragDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDraggable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDraggable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDraggable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDragRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDragRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDragRequest_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDropDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDropDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDropDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDroppable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDroppable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDroppable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDropRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDropRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextDropRequest_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextFieldDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextFieldDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextFieldDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextFormattingCoordinatorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextFormattingCoordinatorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextFormattingCoordinatorDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInput_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInput_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInput_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInputDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInputDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInputDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInputTokenizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInputTokenizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInputTokenizer_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInputTraits_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInputTraits_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInputTraits_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextPasteConfigurationSupporting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextPasteConfigurationSupporting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextPasteConfigurationSupporting_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextPasteDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextPasteDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextPasteDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextPasteItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextPasteItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextPasteItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSearchAggregator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSearchAggregator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSearchAggregator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSearching_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSearching_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSearching_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSelectionDisplayInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSelectionDisplayInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSelectionDisplayInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSelectionHandleView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSelectionHandleView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSelectionHandleView_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSelectionHighlightView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSelectionHighlightView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextSelectionHighlightView_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITextViewDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITimingCurveProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITimingCurveProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITimingCurveProvider_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIToolbarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIToolbarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIToolbarDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIToolTipInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIToolTipInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIToolTipInteractionDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeObservable_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeRegistration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeRegistration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitChangeRegistration_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitDefinition_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitEnvironment_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitOverrides_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitOverrides_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUITraitOverrides_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIUserActivityRestoring_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIVideoEditorControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIVideoEditorControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIVideoEditorControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewAnimating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewAnimating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewAnimating_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerAnimatedTransitioning_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerAnimatedTransitioning_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerAnimatedTransitioning_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerContextTransitioning_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerContextTransitioning_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerContextTransitioning_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerInteractiveTransitioning_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerInteractiveTransitioning_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerInteractiveTransitioning_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerPreviewing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerPreviewing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerPreviewing_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerPreviewingDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerPreviewingDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerPreviewingDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerRestoration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerRestoration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerRestoration_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerTransitionCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerTransitionCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerTransitionCoordinator_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerTransitionCoordinatorContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerTransitionCoordinatorContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerTransitionCoordinatorContext_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerTransitioningDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerTransitioningDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewControllerTransitioningDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewImplicitlyAnimating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewImplicitlyAnimating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIViewImplicitlyAnimating_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIWindowSceneDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIWindowSceneDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIWindowSceneDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIWritingToolsCoordinatorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIWritingToolsCoordinatorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.IUIWritingToolsCoordinatorDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSAdaptiveImageGlyph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSAdaptiveImageGlyph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSAdaptiveImageGlyph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSAdaptiveImageGlyph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSAdaptiveImageGlyph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutAnchor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutAnchor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutAnchor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutAnchor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutAnchor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutBoundarySupplementaryItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutBoundarySupplementaryItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutBoundarySupplementaryItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutBoundarySupplementaryItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutBoundarySupplementaryItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutContainerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutContainerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutDecorationItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutDecorationItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutDecorationItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutDecorationItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutDecorationItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutDimension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutDimension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutDimension_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutDimension_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutDimension_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutEdgeSpacing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutEdgeSpacing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutEdgeSpacing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutEdgeSpacing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutEdgeSpacing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutEnvironmentWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutEnvironmentWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutGroupCustomItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutGroupCustomItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutGroupCustomItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutGroupCustomItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutGroupCustomItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSize_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSize_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSize_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSize_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSize_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSpacing_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSpacing_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSpacing_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSpacing_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSpacing_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSupplementaryItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSupplementaryItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSupplementaryItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSupplementaryItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutSupplementaryItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutVisibleItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutVisibleItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSCollectionLayoutVisibleItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDataAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDataAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDataAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDataAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDataAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSectionSnapshot`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSectionSnapshot`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSectionSnapshot`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSectionSnapshot`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSectionSnapshot`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSectionTransaction`2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSectionTransaction`2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSectionTransaction`2_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSectionTransaction`2_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSectionTransaction`2_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSnapshot`2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSnapshot`2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSnapshot`2_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSnapshot`2_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceSnapshot`2_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceTransaction`2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceTransaction`2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceTransaction`2_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceTransaction`2_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSDiffableDataSourceTransaction`2_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutAnchor`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutAnchor`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutAnchor`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutAnchor`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutAnchor`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutConstraint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutConstraint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutConstraint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutConstraint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutConstraint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutDimension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutDimension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutDimension_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutDimension_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutDimension_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManagerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManagerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutManagerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutXAxisAnchor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutXAxisAnchor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutXAxisAnchor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutXAxisAnchor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutXAxisAnchor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutYAxisAnchor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutYAxisAnchor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutYAxisAnchor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutYAxisAnchor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSLayoutYAxisAnchor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSMutableParagraphStyle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSMutableParagraphStyle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSMutableParagraphStyle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSMutableParagraphStyle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSMutableParagraphStyle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSParagraphStyle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSParagraphStyle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSParagraphStyle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSParagraphStyle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSParagraphStyle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSShadow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSShadow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSShadow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSShadow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSShadow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentContainer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentContainer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentContainer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentContainerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentContainerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentLayoutWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentLayoutWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentLayoutWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentViewProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentViewProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentViewProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentViewProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextAttachmentViewProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContainer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContainer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContainer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManagerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManagerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentManagerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorageDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorageDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorageDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorageDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorageDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorageDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorageDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextContentStorageDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextElement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextElement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextElement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextElementProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextElementProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextElementProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutFragment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutFragment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutFragment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutFragment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutFragment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManagerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManagerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManagerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManagerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManagerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManagerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManagerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutManagerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutOrientationProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutOrientationProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLayoutOrientationProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLineFragment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLineFragment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLineFragment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLineFragment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLineFragment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextList_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextList_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextList_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextList_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextList_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextListElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextListElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextListElement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextListElement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextListElement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLocationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLocationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextLocationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextParagraph_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextParagraph_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextParagraph_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextParagraph_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextParagraph_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionNavigation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionNavigation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionNavigation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionNavigation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextSelectionNavigation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorageDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorageDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorageDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorageDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorageDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorageDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorageDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorageDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorageObservingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorageObservingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextStorageObservingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextTab_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextTab_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextTab_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextTab_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextTab_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSTextViewportLayoutControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSUIViewToolbarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSUIViewToolbarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSUIViewToolbarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSUIViewToolbarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.NSUIViewToolbarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAcceleration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAcceleration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAcceleration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAcceleration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAcceleration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccelerometerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerDataTable_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerDataTable_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerDataTable_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerDataTable_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerDataTable_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerDataTableCellWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerDataTableCellWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerDataTableCellWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerDataTableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerDataTableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerDataTableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityContentSizeCategoryImageAdjustingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotorItemResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotorItemResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotorItemResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotorItemResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotorItemResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotorSearchPredicate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotorSearchPredicate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotorSearchPredicate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotorSearchPredicate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityCustomRotorSearchPredicate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityElement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityElement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityElement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityIdentificationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityLocationDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityLocationDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityLocationDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityLocationDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityLocationDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityReadingContentWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityReadingContentWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAccessibilityReadingContentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheet_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheet_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheet_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheet_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheet_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheetDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheetDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheetDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheetDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheetDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheetDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheetDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActionSheetDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivity_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivity_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivity_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivity_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivity_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityCollaborationModeRestriction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityCollaborationModeRestriction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityCollaborationModeRestriction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityCollaborationModeRestriction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityCollaborationModeRestriction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityIndicatorView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityIndicatorView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityIndicatorView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityIndicatorView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityIndicatorView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationReadingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationReadingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemsConfigurationReadingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityItemSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIActivityViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAdaptivePresentationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAdaptivePresentationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAdaptivePresentationControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAdaptivePresentationControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAdaptivePresentationControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAdaptivePresentationControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAdaptivePresentationControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAdaptivePresentationControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAlertViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAppearanceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplication_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplication_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplication_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplication_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplication_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationShortcutIcon_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationShortcutIcon_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationShortcutIcon_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationShortcutIcon_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationShortcutIcon_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationShortcutItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationShortcutItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationShortcutItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationShortcutItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIApplicationShortcutItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAttachmentBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAttachmentBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAttachmentBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAttachmentBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIAttachmentBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBackgroundConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBackgroundConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBackgroundConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBackgroundConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBackgroundConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBackgroundExtensionView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBackgroundExtensionView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBackgroundExtensionView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBackgroundExtensionView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBackgroundExtensionView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBandSelectionInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBandSelectionInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBandSelectionInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBandSelectionInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBandSelectionInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemBadge_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemBadge_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemBadge_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemBadge_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemBadge_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemStateAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemStateAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemStateAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemStateAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarButtonItemStateAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioning_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioning_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioning_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioning_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioning_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioningDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioningDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioningDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioningDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioningDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioningDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioningDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioningDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioningWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioningWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBarPositioningWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBezierPath_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBezierPath_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBezierPath_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBezierPath_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBezierPath_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBlurEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBlurEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBlurEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBlurEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIBlurEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButton_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButtonConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButtonConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButtonConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButtonConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIButtonConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDateDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDateDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDateDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDateDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDateDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDateDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDateDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionMultiDateDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDateDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDateDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDateDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDateDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDateDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDateDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDateDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionSingleDateDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYear_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYear_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYear_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYear_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYear_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYearDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYearDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYearDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYearDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYearDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYearDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYearDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarSelectionWeekOfYearDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDecoration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDecoration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDecoration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDecoration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDecoration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICalendarViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICanvasFeedbackGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICanvasFeedbackGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICanvasFeedbackGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICanvasFeedbackGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICanvasFeedbackGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryCheckmark_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryCheckmark_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryCheckmark_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryCheckmark_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryCheckmark_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryCustomView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryCustomView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryCustomView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryCustomView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryCustomView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDelete_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDelete_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDelete_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDelete_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDelete_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDetail_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDetail_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDetail_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDetail_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDetail_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDisclosureIndicator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDisclosureIndicator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDisclosureIndicator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDisclosureIndicator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryDisclosureIndicator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryInsert_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryInsert_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryInsert_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryInsert_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryInsert_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryLabel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryLabel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryLabel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryLabel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryLabel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryMultiselect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryMultiselect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryMultiselect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryMultiselect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryMultiselect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryOutlineDisclosure_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryOutlineDisclosure_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryOutlineDisclosure_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryOutlineDisclosure_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryOutlineDisclosure_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryPopUpMenu_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryPopUpMenu_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryPopUpMenu_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryPopUpMenu_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryPopUpMenu_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryReorder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryReorder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryReorder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryReorder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellAccessoryReorder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellConfigurationState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellConfigurationState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellConfigurationState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellConfigurationState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICellConfigurationState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICGFloatTraitDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICGFloatTraitDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICGFloatTraitDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICGFloatTraitDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICGFloatTraitDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICGFloatTraitDefinitionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICGFloatTraitDefinitionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICGFloatTraitDefinitionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICloudSharingControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionLayoutListConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionLayoutListConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionLayoutListConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionLayoutListConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionLayoutListConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionLayoutSectionOrthogonalScrollingProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionReusableView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionReusableView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionReusableView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionReusableView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionReusableView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCell_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCell_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCell_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCell_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCell_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCellRegistration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCellRegistration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCellRegistration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCellRegistration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCellRegistration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCompositionalLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCompositionalLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCompositionalLayout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCompositionalLayout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCompositionalLayout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCompositionalLayoutConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCompositionalLayoutConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCompositionalLayoutConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCompositionalLayoutConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewCompositionalLayoutConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDataSourcePrefetchingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDataSourcePrefetchingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDataSourcePrefetchingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegateFlowLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegateFlowLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegateFlowLayout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegateFlowLayout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegateFlowLayout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegateFlowLayoutWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegateFlowLayoutWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegateFlowLayoutWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSource`2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSource`2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSource`2_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSource`2_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSource`2_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSourceReorderingHandlers`2_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDiffableDataSourceSectionSnapshotHandlers`1_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDragDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDragDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDragDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDragDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDragDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDragDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDragDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDragDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropCoordinatorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropCoordinatorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropCoordinatorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropPlaceholder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropPlaceholder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropPlaceholder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropPlaceholder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropPlaceholder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropPlaceholderContextWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropPlaceholderContextWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropPlaceholderContextWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropProposal_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropProposal_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropProposal_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropProposal_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewDropProposal_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFlowLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFlowLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFlowLayout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFlowLayout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFlowLayout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFlowLayoutInvalidationContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFlowLayoutInvalidationContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFlowLayoutInvalidationContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFlowLayoutInvalidationContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFlowLayoutInvalidationContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFocusUpdateContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFocusUpdateContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFocusUpdateContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFocusUpdateContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewFocusUpdateContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayoutAttributes_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayoutAttributes_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayoutAttributes_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayoutAttributes_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayoutAttributes_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayoutInvalidationContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayoutInvalidationContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayoutInvalidationContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayoutInvalidationContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewLayoutInvalidationContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewListCell_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewListCell_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewListCell_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewListCell_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewListCell_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewPlaceholder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewPlaceholder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewPlaceholder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewPlaceholder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewPlaceholder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSupplementaryRegistration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSupplementaryRegistration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSupplementaryRegistration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSupplementaryRegistration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewSupplementaryRegistration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewTransitionLayout_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewTransitionLayout_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewTransitionLayout_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewTransitionLayout_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewTransitionLayout_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewUpdateItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewUpdateItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewUpdateItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewUpdateItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollectionViewUpdateItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehaviorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehaviorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehaviorDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehaviorDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehaviorDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehaviorDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehaviorDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICollisionBehaviorDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorPickerViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorWell_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorWell_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorWell_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorWell_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIColorWell_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICommandAlternate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICommandAlternate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICommandAlternate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICommandAlternate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICommandAlternate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIConfigurationStateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIConfigurationStateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIConfigurationStateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentConfigurationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentConfigurationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentConfigurationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentSizeCategoryAdjustingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentSizeCategoryAdjustingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentSizeCategoryAdjustingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableButtonProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableButtonProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableButtonProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableButtonProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableButtonProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableConfigurationState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableConfigurationState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableConfigurationState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableConfigurationState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableConfigurationState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableImageProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableImageProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableImageProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableImageProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableImageProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableTextProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableTextProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableTextProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableTextProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableTextProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentUnavailableView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentViewWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentViewWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContentViewWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionAnimatingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionAnimatingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionAnimatingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionCommitAnimatingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionCommitAnimatingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionCommitAnimatingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuSystem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuSystem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuSystem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuSystem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextMenuSystem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextualAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextualAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextualAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextualAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIContextualAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControlEventProxy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControlEventProxy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControlEventProxy_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControlEventProxy_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIControlEventProxy_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpace_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpace_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpace_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpace_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpace_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICoordinateSpaceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICornerConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICornerConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICornerConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICornerConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICornerConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICornerRadius_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICornerRadius_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICornerRadius_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICornerRadius_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICornerRadius_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICubicTimingParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICubicTimingParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICubicTimingParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICubicTimingParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UICubicTimingParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDataSourceModelAssociationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDataSourceModelAssociationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDataSourceModelAssociationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDataSourceTranslatingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDataSourceTranslatingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDataSourceTranslatingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDatePicker_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDatePicker_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDatePicker_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDatePicker_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDatePicker_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDeferredMenuElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDeferredMenuElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDeferredMenuElement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDeferredMenuElement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDeferredMenuElement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDeferredMenuElementProvider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDeferredMenuElementProvider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDeferredMenuElementProvider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDeferredMenuElementProvider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDeferredMenuElementProvider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDevice_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDevice_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDevice_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDevice_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDevice_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDictationPhrase_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDictationPhrase_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDictationPhrase_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDictationPhrase_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDictationPhrase_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocument_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocument_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocument_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocument_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocument_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserTransitionController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserTransitionController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserTransitionController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserTransitionController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserTransitionController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentBrowserViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentInteractionControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentMenuViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerExtensionViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerExtensionViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerExtensionViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerExtensionViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerExtensionViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentPickerViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentViewControllerLaunchOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentViewControllerLaunchOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentViewControllerLaunchOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentViewControllerLaunchOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocumentViewControllerLaunchOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDocViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragAnimatingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragAnimatingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragAnimatingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragDropSessionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragDropSessionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragDropSessionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreview_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreview_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreview_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreview_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreview_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreviewParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreviewParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreviewParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreviewParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreviewParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreviewTarget_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreviewTarget_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreviewTarget_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreviewTarget_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragPreviewTarget_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragSessionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragSessionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDragSessionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropProposal_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropProposal_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropProposal_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropProposal_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropProposal_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropSessionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropSessionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDropSessionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimatorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimatorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimatorDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimatorDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimatorDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimatorDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimatorDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicAnimatorDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIDynamicItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteractionAnimatingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteractionAnimatingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteractionAnimatingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEditMenuInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEventAttribution_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEventAttribution_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEventAttribution_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEventAttribution_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEventAttribution_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEventAttributionView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEventAttributionView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEventAttributionView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEventAttributionView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIEventAttributionView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFeedbackGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFeedbackGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFeedbackGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFeedbackGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFeedbackGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFieldBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFieldBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFieldBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFieldBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFieldBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFindSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusAnimationContextWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusAnimationContextWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusAnimationContextWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusAnimationCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusAnimationCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusAnimationCoordinator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusAnimationCoordinator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusAnimationCoordinator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusDebugger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusDebugger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusDebugger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusDebugger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusDebugger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusDebuggerOutputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusDebuggerOutputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusDebuggerOutputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusGuide_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusGuide_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusGuide_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusGuide_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusGuide_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusHaloEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusHaloEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusHaloEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusHaloEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusHaloEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemScrollableContainerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemScrollableContainerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemScrollableContainerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusMovementHint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusMovementHint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusMovementHint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusMovementHint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusMovementHint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusSystem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusSystem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusSystem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusSystem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusSystem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusUpdateContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusUpdateContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusUpdateContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusUpdateContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFocusUpdateContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFont_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFont_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFont_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFont_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFont_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontDescriptor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontDescriptor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontDescriptor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontDescriptor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontDescriptor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontMetrics_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontMetrics_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontMetrics_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontMetrics_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontMetrics_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIFontPickerViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGestureRecognizerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGlassContainerEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGlassContainerEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGlassContainerEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGlassContainerEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGlassContainerEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGlassEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGlassEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGlassEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGlassEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGlassEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRendererContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRendererContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRendererContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRendererContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRendererContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRendererFormat_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRendererFormat_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRendererFormat_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRendererFormat_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsImageRendererFormat_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRendererContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRendererContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRendererContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRendererContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRendererContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRendererFormat_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRendererFormat_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRendererFormat_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRendererFormat_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsPdfRendererFormat_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRendererContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRendererContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRendererContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRendererContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRendererContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRendererFormat_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRendererFormat_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRendererFormat_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRendererFormat_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGraphicsRendererFormat_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGravityBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGravityBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGravityBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGravityBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGravityBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGuidedAccessRestrictionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGuidedAccessRestrictionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIGuidedAccessRestrictionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverAutomaticEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverAutomaticEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverAutomaticEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverAutomaticEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverAutomaticEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverEffectWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverEffectWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverEffectWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverGestureRecognizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverGestureRecognizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverGestureRecognizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverGestureRecognizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverGestureRecognizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverHighlightEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverHighlightEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverHighlightEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverHighlightEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverHighlightEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverLiftEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverLiftEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverLiftEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverLiftEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverLiftEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverStyle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverStyle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverStyle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverStyle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIHoverStyle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageAsset_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageAsset_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageAsset_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageAsset_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageAsset_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImagePickerControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageReader_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageReader_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageReader_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageReader_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageReader_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageReaderConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageReaderConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageReaderConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageReaderConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageReaderConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageStatusDispatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageStatusDispatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageStatusDispatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageStatusDispatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageStatusDispatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageSymbolConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageSymbolConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageSymbolConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageSymbolConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageSymbolConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImageView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImpactFeedbackGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImpactFeedbackGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImpactFeedbackGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImpactFeedbackGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIImpactFeedbackGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIIndirectScribbleInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputViewAudioFeedbackWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputViewAudioFeedbackWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputViewAudioFeedbackWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInputViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInteractionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInteractionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInteractionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInterpolatingMotionEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInterpolatingMotionEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInterpolatingMotionEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInterpolatingMotionEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIInterpolatingMotionEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIItemProviderPresentationSizeProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIItemProviderPresentationSizeProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIItemProviderPresentationSizeProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIItemProviderReadingAugmentationProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIItemProviderReadingAugmentationProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIItemProviderReadingAugmentationProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKey_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKey_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKey_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKey_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKey_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyboardLayoutGuide_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyboardLayoutGuide_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyboardLayoutGuide_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyboardLayoutGuide_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyboardLayoutGuide_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyInputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyInputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIKeyInputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILabel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILabel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILabel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILabel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILabel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILargeContentViewerItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutGuide_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutGuide_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutGuide_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutGuide_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutGuide_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutGuideAspectFittingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutGuideAspectFittingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutGuideAspectFittingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutSupport_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutSupport_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutSupport_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutSupport_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutSupport_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutSupportWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutSupportWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILayoutSupportWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILetterformAwareAdjustingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILetterformAwareAdjustingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILetterformAwareAdjustingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILexicon_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILexicon_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILexicon_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILexicon_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILexicon_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILexiconEntry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILexiconEntry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILexiconEntry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILexiconEntry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILexiconEntry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentImageProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentImageProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentImageProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentImageProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentImageProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentTextProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentTextProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentTextProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentTextProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentTextProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListContentView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListSeparatorConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListSeparatorConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListSeparatorConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListSeparatorConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIListSeparatorConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILocalizedIndexedCollation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILocalizedIndexedCollation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILocalizedIndexedCollation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILocalizedIndexedCollation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILocalizedIndexedCollation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILocalNotification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILocalNotification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILocalNotification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILocalNotification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILocalNotification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILongPressGestureRecognizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILongPressGestureRecognizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILongPressGestureRecognizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILongPressGestureRecognizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILongPressGestureRecognizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILookToDictateCapableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILookToDictateCapableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UILookToDictateCapableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMainMenuSystem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMainMenuSystem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMainMenuSystem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMainMenuSystem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMainMenuSystem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMainMenuSystemConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMainMenuSystemConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMainMenuSystemConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMainMenuSystemConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMainMenuSystemConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIManagedDocument_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIManagedDocument_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIManagedDocument_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIManagedDocument_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIManagedDocument_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMarkupTextPrintFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMarkupTextPrintFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMarkupTextPrintFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMarkupTextPrintFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMarkupTextPrintFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenu_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenu_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenu_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenu_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenu_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuBuilderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuBuilderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuBuilderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuDisplayPreferences_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuDisplayPreferences_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuDisplayPreferences_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuDisplayPreferences_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuDisplayPreferences_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuElement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuElement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuElement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuElement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuElement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuLeafWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuLeafWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuLeafWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuSystem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuSystem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuSystem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuSystem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuSystem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuSystemFindElementGroupConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuSystemFindElementGroupConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuSystemFindElementGroupConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuSystemFindElementGroupConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMenuSystemFindElementGroupConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMotionEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMotionEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMotionEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMotionEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMotionEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMotionEffectGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMotionEffectGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMotionEffectGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMotionEffectGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMotionEffectGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableApplicationShortcutItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableApplicationShortcutItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableApplicationShortcutItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableApplicationShortcutItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableApplicationShortcutItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableTraits_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableTraits_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableTraits_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableTraits_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableTraits_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableTraitsWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableTraitsWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableTraitsWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableUserNotificationAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableUserNotificationAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableUserNotificationAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableUserNotificationAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableUserNotificationAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableUserNotificationCategory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableUserNotificationCategory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableUserNotificationCategory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableUserNotificationCategory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIMutableUserNotificationCategory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationBarDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItemRenameDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItemRenameDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItemRenameDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItemRenameDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItemRenameDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItemRenameDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItemRenameDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINavigationItemRenameDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINib_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINib_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINib_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINib_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINib_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINotificationFeedbackGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINotificationFeedbackGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINotificationFeedbackGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINotificationFeedbackGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINotificationFeedbackGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINSIntegerTraitDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINSIntegerTraitDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINSIntegerTraitDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINSIntegerTraitDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINSIntegerTraitDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINSIntegerTraitDefinitionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINSIntegerTraitDefinitionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UINSIntegerTraitDefinitionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectRestoration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectRestoration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectRestoration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectRestoration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectRestoration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectRestorationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectRestorationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectRestorationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectTraitDefinition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectTraitDefinition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectTraitDefinition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectTraitDefinition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectTraitDefinition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectTraitDefinitionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectTraitDefinitionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIObjectTraitDefinitionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIOpenUrlContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIOpenUrlContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIOpenUrlContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIOpenUrlContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIOpenUrlContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgress_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgress_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgress_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgress_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgress_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgressDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgressDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgressDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgressDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgressDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgressDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgressDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlProgressDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgress_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgress_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgress_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgress_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgress_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgressDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgressDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgressDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgressDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgressDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgressDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgressDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageControlTimerProgressDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPageViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPanGestureRecognizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPanGestureRecognizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPanGestureRecognizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPanGestureRecognizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPanGestureRecognizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteboard_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteboard_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteboard_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteboard_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteboard_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteConfigurationSupportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteControlConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteControlConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteControlConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteControlConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPasteControlConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilHoverPose_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilHoverPose_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilHoverPose_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilHoverPose_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilHoverPose_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionSqueeze_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionSqueeze_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionSqueeze_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionSqueeze_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionSqueeze_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionTap_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionTap_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionTap_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionTap_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPencilInteractionTap_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPercentDrivenInteractiveTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPercentDrivenInteractiveTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPercentDrivenInteractiveTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPercentDrivenInteractiveTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPercentDrivenInteractiveTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewAccessibilityDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewAccessibilityDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewAccessibilityDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewAccessibilityDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewAccessibilityDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewAccessibilityDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewAccessibilityDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewAccessibilityDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewModel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewModel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewModel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewModel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewModel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewModelWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewModelWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPickerViewModelWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPinchGestureRecognizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPinchGestureRecognizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPinchGestureRecognizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPinchGestureRecognizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPinchGestureRecognizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerAccessory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerAccessory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerAccessory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerAccessory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerAccessory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerHighlightEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerHighlightEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerHighlightEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerHighlightEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerHighlightEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerHoverEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerHoverEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerHoverEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerHoverEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerHoverEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteractionAnimatingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteractionAnimatingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteractionAnimatingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerLiftEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerLiftEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerLiftEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerLiftEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerLiftEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerLockState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerLockState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerLockState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerLockState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerLockState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerRegion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerRegion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerRegion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerRegion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerRegion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerRegionRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerRegionRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerRegionRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerRegionRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerRegionRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerShape_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerShape_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerShape_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerShape_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerShape_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerStyle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerStyle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerStyle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerStyle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPointerStyle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverBackgroundView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverBackgroundView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverBackgroundView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverBackgroundView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverBackgroundView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverBackgroundViewMethodsWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverBackgroundViewMethodsWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverBackgroundViewMethodsWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPopoverPresentationControllerSourceItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPresentationController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPresentationController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPresentationController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPresentationController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPresentationController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPress_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPress_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPress_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPress_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPress_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPressesEvent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPressesEvent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPressesEvent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPressesEvent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPressesEvent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewActionGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewActionGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewActionGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewActionGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewActionGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewActionItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewActionItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewActionItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewTarget_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewTarget_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewTarget_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewTarget_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPreviewTarget_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterDestination_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterDestination_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterDestination_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterDestination_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterDestination_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrinterPickerControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintInteractionControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintPageRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintPageRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintPageRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintPageRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintPageRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintPaper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintPaper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintPaper_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintPaper_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintPaper_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintServiceExtension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintServiceExtension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintServiceExtension_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintServiceExtension_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPrintServiceExtension_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIProgressView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIProgressView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIProgressView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIProgressView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIProgressView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPushBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPushBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPushBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPushBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIPushBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIReferenceLibraryViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIReferenceLibraryViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIReferenceLibraryViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIReferenceLibraryViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIReferenceLibraryViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRefreshControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRefreshControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRefreshControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRefreshControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRefreshControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRegion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRegion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRegion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRegion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRegion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResolvedShape_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResolvedShape_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResolvedShape_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResolvedShape_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResolvedShape_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIResponderStandardEditActionsWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRotationGestureRecognizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRotationGestureRecognizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRotationGestureRecognizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRotationGestureRecognizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIRotationGestureRecognizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScene_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScene_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScene_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScene_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScene_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneActivationConditions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneActivationConditions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneActivationConditions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneActivationConditions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneActivationConditions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneActivationRequestOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneActivationRequestOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneActivationRequestOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneActivationRequestOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneActivationRequestOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneConnectionOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneConnectionOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneConnectionOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneConnectionOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneConnectionOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDestructionCondition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDestructionCondition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDestructionCondition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDestructionCondition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDestructionCondition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDestructionRequestOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDestructionRequestOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDestructionRequestOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDestructionRequestOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneDestructionRequestOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneOpenExternalUrlOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneOpenExternalUrlOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneOpenExternalUrlOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneOpenExternalUrlOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneOpenExternalUrlOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneOpenUrlOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneOpenUrlOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneOpenUrlOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneOpenUrlOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneOpenUrlOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSessionActivationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSessionActivationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSessionActivationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSessionActivationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSessionActivationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSizeRestrictions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSizeRestrictions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSizeRestrictions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSizeRestrictions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSizeRestrictions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSystemProtectionManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSystemProtectionManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSystemProtectionManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSystemProtectionManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneSystemProtectionManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneWindowingBehaviors_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneWindowingBehaviors_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneWindowingBehaviors_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneWindowingBehaviors_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneWindowingBehaviors_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneWindowingControlStyle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneWindowingControlStyle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneWindowingControlStyle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneWindowingControlStyle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISceneWindowingControlStyle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreen_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenEdgePanGestureRecognizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenEdgePanGestureRecognizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenEdgePanGestureRecognizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenEdgePanGestureRecognizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenEdgePanGestureRecognizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotService_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotService_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotService_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotService_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotService_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotServiceDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotServiceDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotServiceDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotServiceDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotServiceDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotServiceDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotServiceDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScreenshotServiceDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScribbleInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeEffectStyle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeEffectStyle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeEffectStyle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeEffectStyle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeEffectStyle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeElementContainerInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeElementContainerInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeElementContainerInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeElementContainerInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollEdgeElementContainerInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewAccessibilityDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewAccessibilityDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewAccessibilityDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewAccessibilityDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewAccessibilityDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewAccessibilityDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewAccessibilityDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewAccessibilityDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIScrollViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBarDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBarDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBarDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBarDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBarDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchBarDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchContainerViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchContainerViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchContainerViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchContainerViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchContainerViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchDisplayDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchResultsUpdating_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchResultsUpdating_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchResultsUpdating_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchResultsUpdating_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchResultsUpdating_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchResultsUpdatingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchResultsUpdatingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchResultsUpdatingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchSuggestionItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchSuggestionItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchSuggestionItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchSuggestionItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchSuggestionItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchSuggestionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchSuggestionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchSuggestionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTab_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTab_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTab_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTab_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTab_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextField_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextField_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextField_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextField_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextField_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextFieldDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextFieldDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextFieldDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextFieldDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextFieldDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextFieldDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextFieldDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextFieldDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextFieldPasteItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextFieldPasteItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchTextFieldPasteItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchToken_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchToken_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchToken_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchToken_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISearchToken_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISegmentedControl_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISegmentedControl_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISegmentedControl_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISegmentedControl_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISegmentedControl_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISelectionFeedbackGenerator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISelectionFeedbackGenerator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISelectionFeedbackGenerator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISelectionFeedbackGenerator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISelectionFeedbackGenerator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShadowProperties_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShadowProperties_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShadowProperties_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShadowProperties_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShadowProperties_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShape_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShape_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShape_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShape_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShape_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShapeProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShapeProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShapeProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShapeResolutionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShapeResolutionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShapeResolutionContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShapeResolutionContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIShapeResolutionContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDetent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDetent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDetent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDetent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDetent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDetentResolutionContextWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDetentResolutionContextWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISheetPresentationControllerDetentResolutionContextWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISimpleTextPrintFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISimpleTextPrintFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISimpleTextPrintFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISimpleTextPrintFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISimpleTextPrintFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISlider_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISlider_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISlider_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISlider_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISlider_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISliderTick_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISliderTick_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISliderTick_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISliderTick_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISliderTick_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISliderTrackConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISliderTrackConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISliderTrackConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISliderTrackConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISliderTrackConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISnapBehavior_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISnapBehavior_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISnapBehavior_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISnapBehavior_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISnapBehavior_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISplitViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionBehaviorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionBehaviorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionBehaviorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionContextWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionContextWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionContextWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionEffectWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionEffectWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionEffectWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringLoadedInteractionSupportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringTimingParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringTimingParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringTimingParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringTimingParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISpringTimingParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStackView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStackView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStackView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStackView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStackView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStandardTextCursorView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStandardTextCursorView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStandardTextCursorView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStandardTextCursorView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStandardTextCursorView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStateRestoring_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStateRestoring_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStateRestoring_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStateRestoring_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStateRestoring_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStateRestoringWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStateRestoringWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStateRestoringWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStatusBarManager_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStatusBarManager_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStatusBarManager_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStatusBarManager_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStatusBarManager_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStepper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStepper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStepper_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStepper_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStepper_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboard_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboard_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboard_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboard_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboard_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardPopoverSegue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardPopoverSegue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardPopoverSegue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardPopoverSegue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardPopoverSegue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardSegue_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardSegue_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardSegue_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardSegue_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardSegue_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardUnwindSegueSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardUnwindSegueSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardUnwindSegueSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardUnwindSegueSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIStoryboardUnwindSegueSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwipeActionsConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwipeActionsConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwipeActionsConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwipeActionsConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwipeActionsConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwipeGestureRecognizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwipeGestureRecognizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwipeGestureRecognizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwipeGestureRecognizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwipeGestureRecognizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwitch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwitch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwitch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwitch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISwitch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISymbolContentTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISymbolContentTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISymbolContentTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISymbolContentTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISymbolContentTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISymbolEffectCompletionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISymbolEffectCompletionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISymbolEffectCompletionContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISymbolEffectCompletionContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UISymbolEffectCompletionContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITab_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITab_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITab_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITab_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITab_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabAccessory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabAccessory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabAccessory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabAccessory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabAccessory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebarAnimatingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebarAnimatingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebarAnimatingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebarDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebarDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebarDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebarDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebarDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarControllerSidebarDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItemAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItemAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItemAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItemAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItemAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItemStateAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItemStateAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItemStateAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItemStateAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabBarItemStateAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabGroup_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabGroup_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabGroup_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabGroup_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabGroup_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewCell_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewCell_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewCell_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewCell_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewCell_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDataSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDataSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDataSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDataSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDataSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDataSourcePrefetchingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDataSourcePrefetchingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDataSourcePrefetchingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDataSourceWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDataSourceWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDataSourceWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDiffableDataSource`2_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDiffableDataSource`2_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDiffableDataSource`2_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDiffableDataSource`2_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDiffableDataSource`2_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDragDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDragDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDragDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDragDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDragDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDragDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDragDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDragDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropCoordinatorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropCoordinatorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropCoordinatorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropPlaceholder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropPlaceholder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropPlaceholder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropPlaceholder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropPlaceholder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropPlaceholderContextWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropPlaceholderContextWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropPlaceholderContextWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropProposal_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropProposal_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropProposal_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropProposal_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewDropProposal_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewFocusUpdateContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewFocusUpdateContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewFocusUpdateContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewFocusUpdateContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewFocusUpdateContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewHeaderFooterView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewHeaderFooterView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewHeaderFooterView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewHeaderFooterView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewHeaderFooterView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewPlaceholder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewPlaceholder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewPlaceholder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewPlaceholder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewPlaceholder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewRowAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewRowAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewRowAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewRowAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewRowAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewSource_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewSource_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewSource_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewSource_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITableViewSource_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarItemRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarItemRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarItemRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarItemRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarItemRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarScrollTarget_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarScrollTarget_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarScrollTarget_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarScrollTarget_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITabSidebarScrollTarget_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITapGestureRecognizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITapGestureRecognizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITapGestureRecognizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITapGestureRecognizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITapGestureRecognizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITargetedDragPreview_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITargetedDragPreview_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITargetedDragPreview_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITargetedDragPreview_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITargetedDragPreview_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITargetedPreview_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITargetedPreview_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITargetedPreview_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITargetedPreview_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITargetedPreview_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextChecker_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextChecker_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextChecker_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextChecker_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextChecker_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextCursorDropPositionAnimator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextCursorDropPositionAnimator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextCursorDropPositionAnimator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextCursorDropPositionAnimator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextCursorDropPositionAnimator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextCursorViewWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextCursorViewWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextCursorViewWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDocumentProxy_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDocumentProxy_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDocumentProxy_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDocumentProxy_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDocumentProxy_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDocumentProxyWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDocumentProxyWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDocumentProxyWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDraggableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDraggableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDraggableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragPreviewRenderer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragPreviewRenderer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragPreviewRenderer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragPreviewRenderer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragPreviewRenderer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragRequestWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragRequestWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDragRequestWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDroppableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDroppableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDroppableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropProposal_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropProposal_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropProposal_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropProposal_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropProposal_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropRequestWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropRequestWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextDropRequestWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextField_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextField_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextField_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextField_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextField_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFieldDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFieldDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFieldDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFieldDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFieldDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFieldDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFieldDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFieldDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinatorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinatorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinatorDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinatorDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinatorDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinatorDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinatorDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextFormattingCoordinatorDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputAssistantItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputAssistantItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputAssistantItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputAssistantItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputAssistantItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputMode_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputMode_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputMode_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputMode_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputMode_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputPasswordRules_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputPasswordRules_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputPasswordRules_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputPasswordRules_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputPasswordRules_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputStringTokenizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputStringTokenizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputStringTokenizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputStringTokenizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputStringTokenizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputTokenizer_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputTokenizer_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputTokenizer_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputTokenizer_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputTokenizer_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputTokenizerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputTokenizerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputTokenizerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputTraitsWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputTraitsWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputTraitsWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInputWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItemMenuConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItemMenuConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItemMenuConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItemMenuConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItemMenuConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItemMenuPreview_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItemMenuPreview_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItemMenuPreview_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItemMenuPreview_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextItemMenuPreview_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextLoupeSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextLoupeSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextLoupeSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextLoupeSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextLoupeSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteConfigurationSupportingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteConfigurationSupportingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteConfigurationSupportingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPasteItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPlaceholder_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPlaceholder_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPlaceholder_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPlaceholder_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPlaceholder_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPosition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPosition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPosition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPosition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextPosition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchAggregatorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchAggregatorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchAggregatorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchingFindSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchingFindSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchingFindSession_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchingFindSession_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchingFindSession_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSearchOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionDisplayInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionHandleViewWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionHandleViewWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionHandleViewWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionHighlightViewWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionHighlightViewWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionHighlightViewWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionRect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionRect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionRect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionRect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextSelectionRect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextViewDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextViewDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextViewDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextViewDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextViewDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextViewDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextViewDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITextViewDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITimingCurveProviderWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITimingCurveProviderWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITimingCurveProviderWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITitlebar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITitlebar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITitlebar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITitlebar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITitlebar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbar_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbar_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbar_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbar_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbar_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolbarDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteractionDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteractionDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteractionDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteractionDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteractionDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteractionDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteractionDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIToolTipInteractionDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITouch_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITouch_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITouch_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITouch_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITouch_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITrackingLayoutGuide_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITrackingLayoutGuide_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITrackingLayoutGuide_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITrackingLayoutGuide_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITrackingLayoutGuide_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitAccessibilityContrast_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitAccessibilityContrast_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitAccessibilityContrast_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitAccessibilityContrast_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitAccessibilityContrast_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitActiveAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitActiveAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitActiveAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitActiveAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitActiveAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeObservableWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeRegistrationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeRegistrationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitChangeRegistrationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitCollection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitCollection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitCollection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitCollection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitCollection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDefinitionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDefinitionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDefinitionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDisplayGamut_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDisplayGamut_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDisplayGamut_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDisplayGamut_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDisplayGamut_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDisplayScale_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDisplayScale_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDisplayScale_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDisplayScale_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitDisplayScale_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitEnvironmentWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitForceTouchCapability_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitForceTouchCapability_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitForceTouchCapability_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitForceTouchCapability_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitForceTouchCapability_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitHdrHeadroomUsageLimit_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitHdrHeadroomUsageLimit_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitHdrHeadroomUsageLimit_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitHdrHeadroomUsageLimit_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitHdrHeadroomUsageLimit_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitHorizontalSizeClass_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitHorizontalSizeClass_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitHorizontalSizeClass_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitHorizontalSizeClass_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitHorizontalSizeClass_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitImageDynamicRange_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitImageDynamicRange_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitImageDynamicRange_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitImageDynamicRange_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitImageDynamicRange_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitLayoutDirection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitLayoutDirection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitLayoutDirection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitLayoutDirection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitLayoutDirection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitLegibilityWeight_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitLegibilityWeight_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitLegibilityWeight_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitLegibilityWeight_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitLegibilityWeight_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitListEnvironment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitListEnvironment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitListEnvironment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitListEnvironment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitListEnvironment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitOverridesWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitOverridesWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitOverridesWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitPreferredContentSizeCategory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitPreferredContentSizeCategory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitPreferredContentSizeCategory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitPreferredContentSizeCategory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitPreferredContentSizeCategory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitResolvesNaturalAlignmentWithBaseWritingDirection_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitResolvesNaturalAlignmentWithBaseWritingDirection_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitResolvesNaturalAlignmentWithBaseWritingDirection_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitResolvesNaturalAlignmentWithBaseWritingDirection_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitResolvesNaturalAlignmentWithBaseWritingDirection_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitSceneCaptureState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitSceneCaptureState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitSceneCaptureState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitSceneCaptureState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitSceneCaptureState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitSplitViewControllerLayoutEnvironment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitSplitViewControllerLayoutEnvironment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitSplitViewControllerLayoutEnvironment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitSplitViewControllerLayoutEnvironment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitSplitViewControllerLayoutEnvironment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitTabAccessoryEnvironment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitTabAccessoryEnvironment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitTabAccessoryEnvironment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitTabAccessoryEnvironment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitTabAccessoryEnvironment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitToolbarItemPresentationSize_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitToolbarItemPresentationSize_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitToolbarItemPresentationSize_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitToolbarItemPresentationSize_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitToolbarItemPresentationSize_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitTypesettingLanguage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitTypesettingLanguage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitTypesettingLanguage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitTypesettingLanguage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitTypesettingLanguage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceIdiom_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceIdiom_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceIdiom_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceIdiom_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceIdiom_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceLevel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceLevel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceLevel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceLevel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceLevel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceStyle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceStyle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceStyle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceStyle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitUserInterfaceStyle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitVerticalSizeClass_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitVerticalSizeClass_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitVerticalSizeClass_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitVerticalSizeClass_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UITraitVerticalSizeClass_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserActivityRestoringWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationCategory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationCategory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationCategory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationCategory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationCategory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIUserNotificationSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVibrancyEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVibrancyEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVibrancyEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVibrancyEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVibrancyEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoEditorControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoStatusDispatcher_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoStatusDispatcher_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoStatusDispatcher_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoStatusDispatcher_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVideoStatusDispatcher_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewAnimatingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewAnimatingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewAnimatingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewConfigurationState_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewConfigurationState_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewConfigurationState_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewConfigurationState_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewConfigurationState_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerAnimatedTransitioning_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerAnimatedTransitioning_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerAnimatedTransitioning_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerAnimatedTransitioning_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerAnimatedTransitioning_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerAnimatedTransitioningWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerAnimatedTransitioningWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerAnimatedTransitioningWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerContextTransitioning_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerContextTransitioning_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerContextTransitioning_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerContextTransitioning_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerContextTransitioning_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerContextTransitioningWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerContextTransitioningWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerContextTransitioningWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerInteractiveTransitioning_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerInteractiveTransitioning_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerInteractiveTransitioning_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerInteractiveTransitioning_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerInteractiveTransitioning_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerInteractiveTransitioningWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerInteractiveTransitioningWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerInteractiveTransitioningWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerPreviewingDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerPreviewingDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerPreviewingDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerPreviewingDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerPreviewingDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerPreviewingDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerPreviewingDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerPreviewingDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerPreviewingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerPreviewingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerPreviewingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerRestorationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerRestorationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerRestorationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransition_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransition_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransition_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransition_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransition_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitionCoordinatorContextWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitionCoordinatorContextWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitionCoordinatorContextWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitionCoordinatorWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitionCoordinatorWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitionCoordinatorWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitioningDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitioningDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitioningDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitioningDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitioningDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitioningDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitioningDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewControllerTransitioningDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewImplicitlyAnimatingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewImplicitlyAnimatingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewImplicitlyAnimatingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewLayoutRegion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewLayoutRegion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewLayoutRegion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewLayoutRegion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewLayoutRegion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewPrintFormatter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewPrintFormatter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewPrintFormatter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewPrintFormatter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewPrintFormatter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewPropertyAnimator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewPropertyAnimator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewPropertyAnimator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewPropertyAnimator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIViewPropertyAnimator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVisualEffect_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVisualEffect_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVisualEffect_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVisualEffect_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVisualEffect_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVisualEffectView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVisualEffectView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVisualEffectView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVisualEffectView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIVisualEffectView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowScene_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowScene_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowScene_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowScene_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowScene_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationRequestOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationRequestOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationRequestOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationRequestOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneActivationRequestOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDestructionRequestOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDestructionRequestOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDestructionRequestOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDestructionRequestOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDestructionRequestOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDragInteraction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDragInteraction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDragInteraction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDragInteraction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneDragInteraction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometry_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometry_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometry_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometry_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometry_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferences_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferences_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferences_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferences_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferences_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferencesIOS_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferencesIOS_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferencesIOS_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferencesIOS_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferencesIOS_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferencesMac_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferencesMac_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferencesMac_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferencesMac_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneGeometryPreferencesMac_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowScenePlacement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowScenePlacement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowScenePlacement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowScenePlacement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowScenePlacement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneProminentPlacement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneProminentPlacement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneProminentPlacement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneProminentPlacement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneProminentPlacement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneStandardPlacement_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneStandardPlacement_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneStandardPlacement_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneStandardPlacement_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWindowSceneStandardPlacement_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinator_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinator_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinator_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinator_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinator_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorAnimationParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorAnimationParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorAnimationParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorAnimationParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorAnimationParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIWritingToolsCoordinatorDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionAlignmentRectContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionAlignmentRectContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionAlignmentRectContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionAlignmentRectContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionAlignmentRectContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionInteractionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionInteractionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionInteractionContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionInteractionContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionInteractionContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionSourceViewProviderContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionSourceViewProviderContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionSourceViewProviderContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionSourceViewProviderContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UIKit.UIZoomTransitionSourceViewProviderContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UniformTypeIdentifiers.UTType_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UniformTypeIdentifiers.UTType_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UniformTypeIdentifiers.UTType_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UniformTypeIdentifiers.UTType_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UniformTypeIdentifiers.UTType_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.IUNNotificationContentProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.IUNNotificationContentProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.IUNNotificationContentProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.IUNUserNotificationCenterDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.IUNUserNotificationCenterDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.IUNUserNotificationCenterDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNCalendarNotificationTrigger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNCalendarNotificationTrigger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNCalendarNotificationTrigger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNCalendarNotificationTrigger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNCalendarNotificationTrigger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNMutableNotificationContent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNMutableNotificationContent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNMutableNotificationContent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNMutableNotificationContent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNMutableNotificationContent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotification_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotification_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotification_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotification_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotification_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationActionIcon_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationActionIcon_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationActionIcon_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationActionIcon_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationActionIcon_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAttachment_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAttachment_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAttachment_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAttachment_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAttachment_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAttributedMessageContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAttributedMessageContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAttributedMessageContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAttributedMessageContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationAttributedMessageContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationCategory_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationCategory_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationCategory_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationCategory_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationCategory_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationContent_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationContent_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationContent_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationContent_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationContent_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationContentProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationContentProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationContentProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationServiceExtension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationServiceExtension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationServiceExtension_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationServiceExtension_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationServiceExtension_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationSettings_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationSettings_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationSettings_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationSettings_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationSettings_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationSound_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationSound_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationSound_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationSound_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationSound_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationTrigger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationTrigger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationTrigger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationTrigger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNNotificationTrigger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNPushNotificationTrigger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNPushNotificationTrigger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNPushNotificationTrigger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNPushNotificationTrigger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNPushNotificationTrigger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTextInputNotificationAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTextInputNotificationAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTextInputNotificationAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTextInputNotificationAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTextInputNotificationAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTextInputNotificationResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTextInputNotificationResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTextInputNotificationResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTextInputNotificationResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTextInputNotificationResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTimeIntervalNotificationTrigger_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTimeIntervalNotificationTrigger_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTimeIntervalNotificationTrigger_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTimeIntervalNotificationTrigger_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNTimeIntervalNotificationTrigger_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenter_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenter_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenter_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenter_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenter_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenterDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenterDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenterDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenterDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenterDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenterDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenterDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotifications.UNUserNotificationCenterDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotificationsUI.IUNNotificationContentExtension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotificationsUI.IUNNotificationContentExtension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotificationsUI.IUNNotificationContentExtension_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotificationsUI.UNNotificationContentExtensionWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotificationsUI.UNNotificationContentExtensionWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:UserNotificationsUI.UNNotificationContentExtensionWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.IVTFrameProcessorConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.IVTFrameProcessorConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.IVTFrameProcessorConfiguration_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.IVTFrameProcessorParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.IVTFrameProcessorParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.IVTFrameProcessorParameters_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTCompressionSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTCompressionSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTCompressionSession_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTDecompressionSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTDecompressionSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTDecompressionSession_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorConfigurationWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorConfigurationWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorConfigurationWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorFrame_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorFrame_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorFrame_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorFrame_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorFrame_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorOpticalFlow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorOpticalFlow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorOpticalFlow_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorOpticalFlow_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorOpticalFlow_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorParametersWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorParametersWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameProcessorParametersWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameRateConversionConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameRateConversionConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameRateConversionConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameRateConversionConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameRateConversionConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameRateConversionParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameRateConversionParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameRateConversionParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameRateConversionParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameRateConversionParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameSilo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameSilo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTFrameSilo_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTHdrPerFrameMetadataGenerationSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTHdrPerFrameMetadataGenerationSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTHdrPerFrameMetadataGenerationSession_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencyFrameInterpolationConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencyFrameInterpolationConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencyFrameInterpolationConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencyFrameInterpolationConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencyFrameInterpolationConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencyFrameInterpolationParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencyFrameInterpolationParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencyFrameInterpolationParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencyFrameInterpolationParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencyFrameInterpolationParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencySuperResolutionScalerConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencySuperResolutionScalerConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencySuperResolutionScalerConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencySuperResolutionScalerConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencySuperResolutionScalerConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencySuperResolutionScalerParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencySuperResolutionScalerParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencySuperResolutionScalerParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencySuperResolutionScalerParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTLowLatencySuperResolutionScalerParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionBlurConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionBlurConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionBlurConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionBlurConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionBlurConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionBlurParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionBlurParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionBlurParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionBlurParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionBlurParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionEstimationSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionEstimationSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMotionEstimationSession_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMultiPassStorage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMultiPassStorage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTMultiPassStorage_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTOpticalFlowConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTOpticalFlowConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTOpticalFlowConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTOpticalFlowConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTOpticalFlowConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTOpticalFlowParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTOpticalFlowParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTOpticalFlowParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTOpticalFlowParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTOpticalFlowParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTPixelRotationSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTPixelRotationSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTPixelRotationSession_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTPixelTransferSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTPixelTransferSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTPixelTransferSession_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSession_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSession_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSession_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSuperResolutionScalerConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSuperResolutionScalerConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSuperResolutionScalerConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSuperResolutionScalerConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSuperResolutionScalerConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSuperResolutionScalerParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSuperResolutionScalerParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSuperResolutionScalerParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSuperResolutionScalerParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTSuperResolutionScalerParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTTemporalNoiseFilterConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTTemporalNoiseFilterConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTTemporalNoiseFilterConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTTemporalNoiseFilterConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTTemporalNoiseFilterConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTTemporalNoiseFilterParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTTemporalNoiseFilterParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTTemporalNoiseFilterParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTTemporalNoiseFilterParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VideoToolbox.VTTemporalNoiseFilterParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.IVNFaceObservationAccepting_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.IVNFaceObservationAccepting_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.IVNFaceObservationAccepting_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.IVNRequestProgressProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.IVNRequestProgressProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.IVNRequestProgressProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.IVNRequestRevisionProviding_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.IVNRequestRevisionProviding_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.IVNRequestRevisionProviding_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNAnimalBodyPoseObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNAnimalBodyPoseObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNAnimalBodyPoseObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNAnimalBodyPoseObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNAnimalBodyPoseObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNBarcodeObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNBarcodeObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNBarcodeObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNBarcodeObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNBarcodeObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCalculateImageAestheticsScoresRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCalculateImageAestheticsScoresRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCalculateImageAestheticsScoresRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCalculateImageAestheticsScoresRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCalculateImageAestheticsScoresRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCircle_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCircle_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCircle_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCircle_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCircle_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNClassificationObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNClassificationObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNClassificationObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNClassificationObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNClassificationObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNClassifyImageRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNClassifyImageRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNClassifyImageRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNClassifyImageRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNClassifyImageRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNContour_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNContour_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNContour_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNContour_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNContour_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNContoursObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNContoursObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNContoursObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNContoursObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNContoursObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLFeatureValueObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLFeatureValueObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLFeatureValueObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLFeatureValueObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLFeatureValueObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLModel_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLModel_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLModel_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLModel_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLModel_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNCoreMLRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectAnimalBodyPoseRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectAnimalBodyPoseRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectAnimalBodyPoseRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectAnimalBodyPoseRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectAnimalBodyPoseRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectBarcodesRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectBarcodesRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectBarcodesRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectBarcodesRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectBarcodesRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectContoursRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectContoursRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectContoursRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectContoursRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectContoursRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectDocumentSegmentationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectDocumentSegmentationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectDocumentSegmentationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectDocumentSegmentationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectDocumentSegmentationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectedObjectObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectedObjectObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectedObjectObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectedObjectObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectedObjectObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectedPoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectedPoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectedPoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectedPoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectedPoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceCaptureQualityRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceCaptureQualityRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceCaptureQualityRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceCaptureQualityRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceCaptureQualityRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceLandmarksRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceLandmarksRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceLandmarksRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceLandmarksRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceLandmarksRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceRectanglesRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceRectanglesRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceRectanglesRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceRectanglesRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectFaceRectanglesRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHorizonRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHorizonRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHorizonRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHorizonRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHorizonRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanBodyPose3DRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanBodyPose3DRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanBodyPose3DRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanBodyPose3DRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanBodyPose3DRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanBodyPoseRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanBodyPoseRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanBodyPoseRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanBodyPoseRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanBodyPoseRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanHandPoseRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanHandPoseRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanHandPoseRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanHandPoseRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanHandPoseRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanRectanglesRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanRectanglesRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanRectanglesRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanRectanglesRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectHumanRectanglesRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectRectanglesRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectRectanglesRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectRectanglesRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectRectanglesRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectRectanglesRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectTextRectanglesRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectTextRectanglesRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectTextRectanglesRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectTextRectanglesRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectTextRectanglesRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectTrajectoriesRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectTrajectoriesRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectTrajectoriesRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectTrajectoriesRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNDetectTrajectoriesRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarkRegion_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarkRegion_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarkRegion_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarkRegion_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarkRegion_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarkRegion2D_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarkRegion2D_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarkRegion2D_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarkRegion2D_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarkRegion2D_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarks_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarks_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarks_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarks_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarks_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarks2D_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarks2D_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarks2D_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarks2D_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceLandmarks2D_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceObservationAcceptingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceObservationAcceptingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFaceObservationAcceptingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFeaturePrintObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFeaturePrintObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFeaturePrintObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFeaturePrintObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNFeaturePrintObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateAttentionBasedSaliencyImageRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateAttentionBasedSaliencyImageRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateAttentionBasedSaliencyImageRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateAttentionBasedSaliencyImageRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateAttentionBasedSaliencyImageRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateForegroundInstanceMaskRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateForegroundInstanceMaskRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateForegroundInstanceMaskRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateForegroundInstanceMaskRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateForegroundInstanceMaskRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateImageFeaturePrintRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateImageFeaturePrintRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateImageFeaturePrintRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateImageFeaturePrintRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateImageFeaturePrintRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateObjectnessBasedSaliencyImageRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateObjectnessBasedSaliencyImageRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateObjectnessBasedSaliencyImageRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateObjectnessBasedSaliencyImageRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateObjectnessBasedSaliencyImageRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateOpticalFlowRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateOpticalFlowRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateOpticalFlowRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateOpticalFlowRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGenerateOpticalFlowRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeneratePersonInstanceMaskRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeneratePersonInstanceMaskRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeneratePersonInstanceMaskRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeneratePersonInstanceMaskRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeneratePersonInstanceMaskRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeneratePersonSegmentationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeneratePersonSegmentationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeneratePersonSegmentationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeneratePersonSegmentationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeneratePersonSegmentationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeometryUtils_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeometryUtils_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeometryUtils_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeometryUtils_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNGeometryUtils_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHomographicImageRegistrationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHomographicImageRegistrationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHomographicImageRegistrationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHomographicImageRegistrationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHomographicImageRegistrationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHorizonObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHorizonObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHorizonObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHorizonObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHorizonObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyPose3DObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyPose3DObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyPose3DObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyPose3DObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyPose3DObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyPoseObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyPoseObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyPoseObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyPoseObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyPoseObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyRecognizedPoint3D_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyRecognizedPoint3D_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyRecognizedPoint3D_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyRecognizedPoint3D_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanBodyRecognizedPoint3D_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanHandPoseObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanHandPoseObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanHandPoseObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanHandPoseObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanHandPoseObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNHumanObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageAestheticsScoresObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageAestheticsScoresObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageAestheticsScoresObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageAestheticsScoresObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageAestheticsScoresObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageAlignmentObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageAlignmentObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageAlignmentObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageAlignmentObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageAlignmentObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageBasedRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageBasedRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageBasedRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageBasedRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageBasedRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageHomographicAlignmentObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageHomographicAlignmentObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageHomographicAlignmentObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageHomographicAlignmentObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageHomographicAlignmentObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageRegistrationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageRegistrationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageRegistrationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageRegistrationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageRegistrationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageRequestHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageRequestHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageRequestHandler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageRequestHandler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageRequestHandler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageTranslationAlignmentObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageTranslationAlignmentObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageTranslationAlignmentObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageTranslationAlignmentObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNImageTranslationAlignmentObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNInstanceMaskObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNInstanceMaskObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNInstanceMaskObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNInstanceMaskObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNInstanceMaskObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPixelBufferObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPixelBufferObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPixelBufferObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPixelBufferObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPixelBufferObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPoint3D_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPoint3D_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPoint3D_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPoint3D_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNPoint3D_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizeAnimalsRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizeAnimalsRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizeAnimalsRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizeAnimalsRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizeAnimalsRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedObjectObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedObjectObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedObjectObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedObjectObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedObjectObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoint_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoint_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoint_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoint_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoint_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoint3D_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoint3D_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoint3D_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoint3D_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoint3D_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoints3DObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoints3DObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoints3DObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoints3DObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPoints3DObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPointsObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPointsObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPointsObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPointsObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedPointsObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedText_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedText_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedText_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedText_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedText_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedTextObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedTextObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedTextObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedTextObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizedTextObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizeTextRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizeTextRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizeTextRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizeTextRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRecognizeTextRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRectangleObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRectangleObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRectangleObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRectangleObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRectangleObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRequestProgressProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRequestProgressProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRequestProgressProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRequestRevisionProvidingWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRequestRevisionProvidingWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNRequestRevisionProvidingWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNSaliencyImageObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNSaliencyImageObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNSaliencyImageObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNSaliencyImageObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNSaliencyImageObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNSequenceRequestHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNSequenceRequestHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNSequenceRequestHandler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNSequenceRequestHandler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNSequenceRequestHandler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNStatefulRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNStatefulRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNStatefulRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNStatefulRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNStatefulRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTargetedImageRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTargetedImageRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTargetedImageRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTargetedImageRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTargetedImageRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTextObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTextObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTextObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTextObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTextObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackHomographicImageRegistrationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackHomographicImageRegistrationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackHomographicImageRegistrationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackHomographicImageRegistrationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackHomographicImageRegistrationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackingRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackingRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackingRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackingRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackingRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackObjectRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackObjectRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackObjectRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackObjectRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackObjectRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackOpticalFlowRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackOpticalFlowRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackOpticalFlowRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackOpticalFlowRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackOpticalFlowRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackRectangleRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackRectangleRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackRectangleRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackRectangleRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackRectangleRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackTranslationalImageRegistrationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackTranslationalImageRegistrationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackTranslationalImageRegistrationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackTranslationalImageRegistrationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrackTranslationalImageRegistrationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrajectoryObservation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrajectoryObservation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrajectoryObservation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrajectoryObservation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTrajectoryObservation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTranslationalImageRegistrationRequest_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTranslationalImageRegistrationRequest_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTranslationalImageRegistrationRequest_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTranslationalImageRegistrationRequest_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNTranslationalImageRegistrationRequest_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVector_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVector_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVector_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVector_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVector_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessor_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessor_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessor_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessor_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessor_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorCadence_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorCadence_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorCadence_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorCadence_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorCadence_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorFrameRateCadence_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorFrameRateCadence_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorFrameRateCadence_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorFrameRateCadence_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorFrameRateCadence_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorRequestProcessingOptions_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorRequestProcessingOptions_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorRequestProcessingOptions_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorRequestProcessingOptions_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorRequestProcessingOptions_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorTimeIntervalCadence_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorTimeIntervalCadence_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorTimeIntervalCadence_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorTimeIntervalCadence_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:Vision.VNVideoProcessorTimeIntervalCadence_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.IVNDocumentCameraViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.IVNDocumentCameraViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.IVNDocumentCameraViewControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraScan_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraScan_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraScan_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraScan_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraScan_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:VisionKit.VNDocumentCameraViewControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit__WKWebView.WKWebViewAppearance_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit__WKWebView.WKWebViewAppearance_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit__WKWebView.WKWebViewAppearance_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit__WKWebView.WKWebViewAppearance_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit__WKWebView.WKWebViewAppearance_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKDownloadDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKDownloadDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKDownloadDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKHttpCookieStoreObserver_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKHttpCookieStoreObserver_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKHttpCookieStoreObserver_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKNavigationDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKNavigationDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKNavigationDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKPreviewActionItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKPreviewActionItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKPreviewActionItem_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKScriptMessageHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKScriptMessageHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKScriptMessageHandler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKScriptMessageHandlerWithReply_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKScriptMessageHandlerWithReply_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKScriptMessageHandlerWithReply_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKUIDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKUIDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKUIDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKUrlSchemeHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKUrlSchemeHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKUrlSchemeHandler_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKUrlSchemeTask_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKUrlSchemeTask_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKUrlSchemeTask_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKWebExtensionControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKWebExtensionControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKWebExtensionControllerDelegate_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKWebExtensionTab_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKWebExtensionTab_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKWebExtensionTab_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKWebExtensionWindow_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKWebExtensionWindow_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.IWKWebExtensionWindow_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKBackForwardList_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKBackForwardList_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKBackForwardList_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKBackForwardList_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKBackForwardList_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKBackForwardListItem_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKBackForwardListItem_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKBackForwardListItem_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKBackForwardListItem_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKBackForwardListItem_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentRuleList_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentRuleList_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentRuleList_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentRuleList_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentRuleList_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentRuleListStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentRuleListStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentRuleListStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentRuleListStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentRuleListStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentWorld_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentWorld_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentWorld_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentWorld_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContentWorld_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContextMenuElementInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContextMenuElementInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContextMenuElementInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContextMenuElementInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKContextMenuElementInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownload_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownload_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownload_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownload_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownload_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownloadDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownloadDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownloadDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownloadDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownloadDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownloadDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownloadDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKDownloadDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFindConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFindConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFindConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFindConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFindConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFindResult_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFindResult_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFindResult_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFindResult_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFindResult_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFrameInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFrameInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFrameInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFrameInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKFrameInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKHttpCookieStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKHttpCookieStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKHttpCookieStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKHttpCookieStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKHttpCookieStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKHttpCookieStoreObserverWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKHttpCookieStoreObserverWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKHttpCookieStoreObserverWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigation_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigation_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigation_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigation_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigation_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationResponse_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationResponse_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationResponse_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationResponse_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKNavigationResponse_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKOpenPanelParameters_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKOpenPanelParameters_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKOpenPanelParameters_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKOpenPanelParameters_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKOpenPanelParameters_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPdfConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPdfConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPdfConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPdfConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPdfConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreferences_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreferences_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreferences_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreferences_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreferences_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreviewActionItemWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreviewActionItemWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreviewActionItemWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreviewElementInfo_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreviewElementInfo_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreviewElementInfo_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreviewElementInfo_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKPreviewElementInfo_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKProcessPool_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKProcessPool_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKProcessPool_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKProcessPool_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKProcessPool_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessage_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessage_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessage_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessage_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessage_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessageHandler_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessageHandler_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessageHandler_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessageHandler_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessageHandler_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessageHandlerWithReplyWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessageHandlerWithReplyWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessageHandlerWithReplyWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessageHandlerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessageHandlerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKScriptMessageHandlerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKSecurityOrigin_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKSecurityOrigin_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKSecurityOrigin_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKSecurityOrigin_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKSecurityOrigin_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKSnapshotConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKSnapshotConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKSnapshotConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKSnapshotConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKSnapshotConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUIDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUIDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUIDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUIDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUIDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUIDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUIDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUIDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUrlSchemeHandlerWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUrlSchemeHandlerWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUrlSchemeHandlerWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUrlSchemeTaskWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUrlSchemeTaskWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUrlSchemeTaskWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUserContentController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUserContentController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUserContentController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUserContentController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUserContentController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUserScript_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUserScript_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUserScript_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUserScript_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKUserScript_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtension_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtension_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtension_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtension_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtension_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionAction_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionAction_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionAction_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionAction_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionAction_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionCommand_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionCommand_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionCommand_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionCommand_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionCommand_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionContext_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionContext_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionContext_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionContext_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionContext_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionController_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionController_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionController_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionController_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionController_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerDelegate_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerDelegate_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerDelegate_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerDelegate_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerDelegateWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerDelegateWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionControllerDelegateWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionDataRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionDataRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionDataRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionDataRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionDataRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionMatchPattern_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionMatchPattern_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionMatchPattern_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionMatchPattern_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionMatchPattern_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionMessagePort_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionMessagePort_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionMessagePort_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionMessagePort_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionMessagePort_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionTabConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionTabConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionTabConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionTabConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionTabConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionTabWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionTabWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionTabWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionWindowConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionWindowConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionWindowConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionWindowConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionWindowConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionWindowWrapper_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionWindowWrapper_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebExtensionWindowWrapper_Proxy.CreateObject(System.IntPtr, System.Boolean)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebpagePreferences_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebpagePreferences_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebpagePreferences_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebpagePreferences_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebpagePreferences_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebsiteDataRecord_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebsiteDataRecord_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebsiteDataRecord_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebsiteDataRecord_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebsiteDataRecord_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebsiteDataStore_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebsiteDataStore_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebsiteDataStore_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebsiteDataStore_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebsiteDataStore_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebView_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebView_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebView_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebView_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebView_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebViewConfiguration_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebViewConfiguration_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebViewConfiguration_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebViewConfiguration_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWebViewConfiguration_Proxy.LookupUnmanagedFunction(System.String)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWindowFeatures_Proxy
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWindowFeatures_Proxy..ctor()
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWindowFeatures_Proxy.CreateObject(System.IntPtr)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWindowFeatures_Proxy.GetClassHandle(System.Boolean&)
+_Microsoft.MacCatalyst.TypeMap.dll:WebKit.WKWindowFeatures_Proxy.LookupUnmanagedFunction(System.String)
+_SizeTestApp.TypeMap.dll:
+_SizeTestApp.TypeMap.dll:MySimpleApp.AppDelegate_Proxy
+_SizeTestApp.TypeMap.dll:MySimpleApp.AppDelegate_Proxy..ctor()
+_SizeTestApp.TypeMap.dll:MySimpleApp.AppDelegate_Proxy.CreateObject(System.IntPtr)
+_SizeTestApp.TypeMap.dll:MySimpleApp.AppDelegate_Proxy.GetClassHandle(System.Boolean&)
+_SizeTestApp.TypeMap.dll:MySimpleApp.AppDelegate_Proxy.LookupUnmanagedFunction(System.String)
+_SizeTestApp.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute
+_SizeTestApp.TypeMap.dll:System.Runtime.CompilerServices.IgnoresAccessChecksToAttribute..ctor(System.String)
+Microsoft.MacCatalyst.dll:
+Microsoft.MacCatalyst.dll:..cctor()
+Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher
+Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher.get_WorksWhenModal()
+Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher.OnActivated(Foundation.NSObject)
+Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher.OnActivated2(Foundation.NSObject)
+Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__
+Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__.callback_3134_AppKit_ActionDispatcher_OnActivated(System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__.callback_3135_AppKit_ActionDispatcher_OnActivated2(System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:AppKit.ActionDispatcher/__Registrar_Callbacks__.callback_3137_AppKit_ActionDispatcher_get_WorksWhenModal(System.IntPtr, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray..cctor()
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray..ctor(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray.ArrayFromHandle`1(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray.ArrayFromHandle`1(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray.ArrayFromHandleFunc`1(ObjCRuntime.NativeHandle, System.Func`2)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray.CFArrayGetValues(System.IntPtr, CoreFoundation.CFRange, System.IntPtr)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray.DefaultConvert`1(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray.get__CFNullHandle()
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray.GetCount(System.IntPtr)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray.StringArrayFromHandle(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray.StringArrayFromHandle(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray/<>O
+Microsoft.MacCatalyst.dll:CoreFoundation.CFArray/O__25_0`1
+Microsoft.MacCatalyst.dll:CoreFoundation.CFObject
+Microsoft.MacCatalyst.dll:CoreFoundation.CFObject.CFRelease(System.IntPtr)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFObject.CFRetain(System.IntPtr)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFRange
+Microsoft.MacCatalyst.dll:CoreFoundation.CFRange..ctor(System.Int32, System.Int32)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFRange.ToString()
+Microsoft.MacCatalyst.dll:CoreFoundation.CFString
+Microsoft.MacCatalyst.dll:CoreFoundation.CFString..ctor(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFString.CFStringCreateWithCharacters(System.IntPtr, System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFString.CFStringGetCharacters(System.IntPtr, CoreFoundation.CFRange, System.Char*)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFString.CFStringGetCharactersPtr(System.IntPtr)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFString.CFStringGetLength(System.IntPtr)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFString.CreateNative(System.String)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFString.FromHandle(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFString.FromHandle(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFString.ReleaseNative(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:CoreFoundation.CFString.ToString()
+Microsoft.MacCatalyst.dll:CoreFoundation.NativeObject
+Microsoft.MacCatalyst.dll:CoreFoundation.NativeObject..ctor(ObjCRuntime.NativeHandle, System.Boolean, System.Boolean)
+Microsoft.MacCatalyst.dll:CoreFoundation.NativeObject..ctor(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:CoreFoundation.NativeObject.Dispose(System.Boolean)
+Microsoft.MacCatalyst.dll:CoreFoundation.NativeObject.Release()
+Microsoft.MacCatalyst.dll:CoreFoundation.NativeObject.Retain()
+Microsoft.MacCatalyst.dll:CoreGraphics.CGRect
+Microsoft.MacCatalyst.dll:CoreGraphics.CGRect UIKit.UIScreen::Bounds()
+Microsoft.MacCatalyst.dll:CoreGraphics.CGRect UIKit.UIView::Bounds()
+Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.Equals(CoreGraphics.CGRect)
+Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.Equals(System.Object)
+Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.GetHashCode()
+Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.NSStringFromCGRect(CoreGraphics.CGRect)
+Microsoft.MacCatalyst.dll:CoreGraphics.CGRect.ToString()
+Microsoft.MacCatalyst.dll:Foundation.ExportAttribute
+Microsoft.MacCatalyst.dll:Foundation.ExportAttribute..ctor(System.String, ObjCRuntime.ArgumentSemantic)
+Microsoft.MacCatalyst.dll:Foundation.ExportAttribute..ctor(System.String)
+Microsoft.MacCatalyst.dll:Foundation.INSObjectFactory
+Microsoft.MacCatalyst.dll:Foundation.INSObjectFactory._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.ModelAttribute
+Microsoft.MacCatalyst.dll:Foundation.ModelAttribute..ctor()
+Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool
+Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool..cctor()
+Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool..ctor()
+Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSAutoreleasePool.get_ClassHandle()
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary Foundation.NSDictionary/d__66::<>4__this
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary..cctor()
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary.get_ClassHandle()
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary.get_Count()
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary.get_Keys()
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary.GetEnumerator()
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary.ObjectForKey(Foundation.NSObject)
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary.System.Collections.Generic.ICollection>.CopyTo(System.Collections.Generic.KeyValuePair`2[], System.Int32)
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary.System.Collections.Generic.ICollection>.get_Count()
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary/d__66
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary/d__66..ctor(System.Int32)
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary/d__66.MoveNext()
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary/d__66.System.Collections.Generic.IEnumerator>.get_Current()
+Microsoft.MacCatalyst.dll:Foundation.NSDictionary/d__66.System.IDisposable.Dispose()
+Microsoft.MacCatalyst.dll:Foundation.NSException
+Microsoft.MacCatalyst.dll:Foundation.NSException ObjCRuntime.MarshalObjectiveCExceptionEventArgs::k__BackingField
+Microsoft.MacCatalyst.dll:Foundation.NSException ObjCRuntime.MarshalObjectiveCExceptionEventArgs::Exception()
+Microsoft.MacCatalyst.dll:Foundation.NSException ObjCRuntime.ObjCException::native_exc
+Microsoft.MacCatalyst.dll:Foundation.NSException ObjCRuntime.ObjCException::NSException()
+Microsoft.MacCatalyst.dll:Foundation.NSException._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:Foundation.NSException._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSException..cctor()
+Microsoft.MacCatalyst.dll:Foundation.NSException..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSException.get_CallStackSymbols()
+Microsoft.MacCatalyst.dll:Foundation.NSException.get_ClassHandle()
+Microsoft.MacCatalyst.dll:Foundation.NSException.get_Name()
+Microsoft.MacCatalyst.dll:Foundation.NSException.get_Reason()
+Microsoft.MacCatalyst.dll:Foundation.NSObject
+Microsoft.MacCatalyst.dll:Foundation.NSObject..cctor()
+Microsoft.MacCatalyst.dll:Foundation.NSObject..ctor()
+Microsoft.MacCatalyst.dll:Foundation.NSObject..ctor(Foundation.NSObjectFlag)
+Microsoft.MacCatalyst.dll:Foundation.NSObject..ctor(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:Foundation.NSObject..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.AllocateData()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.AllocIfNeeded()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.ClearHandle()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.ConformsToProtocol(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.CreateManagedRef(System.Boolean)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.CreateNSObject(System.IntPtr, System.IntPtr, Foundation.NSObject/Flags)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.DangerousAutorelease()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.DangerousAutorelease(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.DangerousRelease()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.DangerousRelease(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.DangerousRetain()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.DangerousRetain(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.Dispose()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.Dispose(System.Boolean)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.Equals(Foundation.NSObject)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.Equals(System.Object)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.Finalize()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.get_ClassHandle()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.get_Description()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.get_disposed()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.get_flags()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.get_handle()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.get_Handle()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.get_InFinalizerQueue()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.get_IsDirectBinding()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.get_IsRegisteredToggleRef()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.get_SuperHandle()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.GetData()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.GetHashCode()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.GetNativeHash()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.GetSuper()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.Initialize()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.InitializeHandle(ObjCRuntime.NativeHandle, System.String, System.Boolean)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.InitializeHandle(ObjCRuntime.NativeHandle, System.String)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.InitializeObject(System.Boolean)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.InvokeConformsToProtocol(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.IsEqual(Foundation.NSObject)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.RecreateDataHandle()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.ReleaseManagedRef()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.set_disposed(System.Boolean)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.set_flags(Foundation.NSObject/Flags)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.set_handle(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.set_Handle(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.set_HasManagedRef(System.Boolean)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.set_IsDirectBinding(System.Boolean)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.ToString()
+Microsoft.MacCatalyst.dll:Foundation.NSObject.xamarin_release_managed_ref(System.IntPtr, System.Byte)
+Microsoft.MacCatalyst.dll:Foundation.NSObject.xamarin_set_gchandle_with_flags_safe(System.IntPtr, System.IntPtr, Foundation.NSObject/XamarinGCHandleFlags, System.IntPtr)
+Microsoft.MacCatalyst.dll:Foundation.NSObject[] Foundation.NSDictionary::Keys()
+Microsoft.MacCatalyst.dll:Foundation.NSObject[] Foundation.NSDictionary/d__66::<>7__wrap1
+Microsoft.MacCatalyst.dll:Foundation.NSObject/Flags
+Microsoft.MacCatalyst.dll:Foundation.NSObject/Flags Foundation.NSObject::flags()
+Microsoft.MacCatalyst.dll:Foundation.NSObject/Flags Foundation.NSObject/Flags::Disposed
+Microsoft.MacCatalyst.dll:Foundation.NSObject/Flags Foundation.NSObject/Flags::HasManagedRef
+Microsoft.MacCatalyst.dll:Foundation.NSObject/Flags Foundation.NSObject/Flags::InFinalizerQueue
+Microsoft.MacCatalyst.dll:Foundation.NSObject/Flags Foundation.NSObject/Flags::IsCustomType
+Microsoft.MacCatalyst.dll:Foundation.NSObject/Flags Foundation.NSObject/Flags::IsDirectBinding
+Microsoft.MacCatalyst.dll:Foundation.NSObject/Flags Foundation.NSObject/Flags::NativeRef
+Microsoft.MacCatalyst.dll:Foundation.NSObject/Flags Foundation.NSObject/Flags::RegisteredToggleRef
+Microsoft.MacCatalyst.dll:Foundation.NSObject/Flags Foundation.NSObjectData::flags
+Microsoft.MacCatalyst.dll:Foundation.NSObject/NSObject_Disposer
+Microsoft.MacCatalyst.dll:Foundation.NSObject/NSObject_Disposer..cctor()
+Microsoft.MacCatalyst.dll:Foundation.NSObject/NSObject_Disposer..ctor()
+Microsoft.MacCatalyst.dll:Foundation.NSObject/NSObject_Disposer..ctor(System.IntPtr, ObjCRuntime.IManagedRegistrar)
+Microsoft.MacCatalyst.dll:Foundation.NSObject/NSObject_Disposer.Add(Foundation.NSObject)
+Microsoft.MacCatalyst.dll:Foundation.NSObject/NSObject_Disposer.Drain(Foundation.NSObject)
+Microsoft.MacCatalyst.dll:Foundation.NSObject/NSObject_Disposer.ScheduleDrain()
+Microsoft.MacCatalyst.dll:Foundation.NSObject/NSObject_Disposer/__Registrar_Callbacks__
+Microsoft.MacCatalyst.dll:Foundation.NSObject/NSObject_Disposer/__Registrar_Callbacks__.callback_3053_Foundation_NSObject_NSObject_Disposer__ctor(System.IntPtr, System.IntPtr, System.Byte*, System.IntPtr*)
+Microsoft.MacCatalyst.dll:Foundation.NSObject/NSObject_Disposer/__Registrar_Callbacks__.callback_3054_Foundation_NSObject_NSObject_Disposer_Drain(System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:Foundation.NSObject/XamarinGCHandleFlags
+Microsoft.MacCatalyst.dll:Foundation.NSObject/XamarinGCHandleFlags Foundation.NSObject/XamarinGCHandleFlags::HasManagedRef
+Microsoft.MacCatalyst.dll:Foundation.NSObject/XamarinGCHandleFlags Foundation.NSObject/XamarinGCHandleFlags::InitialSet
+Microsoft.MacCatalyst.dll:Foundation.NSObject/XamarinGCHandleFlags Foundation.NSObject/XamarinGCHandleFlags::None
+Microsoft.MacCatalyst.dll:Foundation.NSObjectData
+Microsoft.MacCatalyst.dll:Foundation.NSObjectData* Foundation.NSObject::__data_for_mono
+Microsoft.MacCatalyst.dll:Foundation.NSObjectData* Foundation.NSObjectDataHandle::Data()
+Microsoft.MacCatalyst.dll:Foundation.NSObjectDataHandle
+Microsoft.MacCatalyst.dll:Foundation.NSObjectDataHandle Foundation.NSObject::data_handle
+Microsoft.MacCatalyst.dll:Foundation.NSObjectDataHandle..ctor()
+Microsoft.MacCatalyst.dll:Foundation.NSObjectDataHandle..ctor(System.IntPtr)
+Microsoft.MacCatalyst.dll:Foundation.NSObjectDataHandle.get_Data()
+Microsoft.MacCatalyst.dll:Foundation.NSObjectDataHandle.get_IsInvalid()
+Microsoft.MacCatalyst.dll:Foundation.NSObjectDataHandle.Invalidate()
+Microsoft.MacCatalyst.dll:Foundation.NSObjectDataHandle.ReleaseHandle()
+Microsoft.MacCatalyst.dll:Foundation.NSObjectFlag
+Microsoft.MacCatalyst.dll:Foundation.NSObjectFlag Foundation.NSObjectFlag::Empty
+Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute
+Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute..ctor()
+Microsoft.MacCatalyst.dll:Foundation.ProtocolAttribute.get_WrapperType()
+Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute
+Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute..ctor(System.String, System.Boolean)
+Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute..ctor(System.String)
+Microsoft.MacCatalyst.dll:Foundation.RegisterAttribute.get_IsWrapper()
+Microsoft.MacCatalyst.dll:Foundation.You_Should_Not_Call_base_In_This_Method
+Microsoft.MacCatalyst.dll:Foundation.You_Should_Not_Call_base_In_This_Method..ctor()
+Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic
+Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic Foundation.ExportAttribute::semantic
+Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Assign
+Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Copy
+Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::None
+Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Retain
+Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Strong
+Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::UnsafeUnretained
+Microsoft.MacCatalyst.dll:ObjCRuntime.ArgumentSemantic ObjCRuntime.ArgumentSemantic::Weak
+Microsoft.MacCatalyst.dll:ObjCRuntime.BlockCollector
+Microsoft.MacCatalyst.dll:ObjCRuntime.BlockCollector..ctor(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.BlockCollector.Add(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.BlockCollector.Finalize()
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class..cctor()
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class..ctor(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class..ctor(System.Type)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.class_getName(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.class_getSuperclass(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.Equals(ObjCRuntime.Class)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.Equals(System.Object)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.FindClass(System.Type, out System.Boolean&)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.FindMapIndex(ObjCRuntime.Runtime/MTClassMap*, System.Int32, System.Int32, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.FindType(ObjCRuntime.NativeHandle, out System.Boolean&)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.FindTypeInTrimmableMap(ObjCRuntime.NativeHandle, out System.Boolean&)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.get_Handle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.get_Name()
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.GetAssemblyName(System.Reflection.Assembly)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.GetClassForObject(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.GetClassHandle(System.Type, System.Boolean, out System.Boolean&)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.GetClassName(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.GetHandle(System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.GetHandle(System.Type)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.GetHashCode()
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.Initialize(ObjCRuntime.Runtime/InitializationOptions*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.Lookup(System.IntPtr, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.Lookup(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.objc_getClass(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.objc_getClass(System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.object_getClass(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.ResolveAssembly(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.ResolveFullTokenReference(System.UInt32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.ResolveMethodTokenReference(System.UInt32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.ResolveModule(System.Reflection.Assembly, System.UInt32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.ResolveToken(System.Reflection.Assembly, System.Reflection.Module, System.UInt32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.ResolveTokenReference(System.UInt32, System.UInt32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.ResolveTypeTokenReference(System.UInt32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.TryGetClass(System.IntPtr, out System.IntPtr&, out System.String&)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.TryGetTrimmableProxyTypeAttribute(System.String, out ObjCRuntime.NSObjectProxyAttribute&, out System.Type&)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.TryResolveAssembly(System.IntPtr, out System.Reflection.Assembly&)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Class.VerifyStaticRegistrarCode(System.IntPtr, System.Reflection.Assembly)
+Microsoft.MacCatalyst.dll:ObjCRuntime.DisposableObject
+Microsoft.MacCatalyst.dll:ObjCRuntime.DisposableObject..ctor(ObjCRuntime.NativeHandle, System.Boolean, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.DisposableObject.Dispose()
+Microsoft.MacCatalyst.dll:ObjCRuntime.DisposableObject.Dispose(System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.DisposableObject.Equals(System.Object)
+Microsoft.MacCatalyst.dll:ObjCRuntime.DisposableObject.Finalize()
+Microsoft.MacCatalyst.dll:ObjCRuntime.DisposableObject.get_Handle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.DisposableObject.GetCheckedHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.DisposableObject.GetHashCode()
+Microsoft.MacCatalyst.dll:ObjCRuntime.DisposableObject.InitializeHandle(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn._dlopen(System.IntPtr, ObjCRuntime.Dlfcn/Mode)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn._dlopen(System.String, ObjCRuntime.Dlfcn/Mode)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn.dlsym(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn.dlsym(System.IntPtr, System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn.GetIntPtr(System.IntPtr, System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn/Mode
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn/Mode ObjCRuntime.Dlfcn/Mode::First
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn/Mode ObjCRuntime.Dlfcn/Mode::Global
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn/Mode ObjCRuntime.Dlfcn/Mode::Lazy
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn/Mode ObjCRuntime.Dlfcn/Mode::Local
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn/Mode ObjCRuntime.Dlfcn/Mode::NoDelete
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn/Mode ObjCRuntime.Dlfcn/Mode::NoLoad
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn/Mode ObjCRuntime.Dlfcn/Mode::None
+Microsoft.MacCatalyst.dll:ObjCRuntime.Dlfcn/Mode ObjCRuntime.Dlfcn/Mode::Now
+Microsoft.MacCatalyst.dll:ObjCRuntime.ErrorHelper
+Microsoft.MacCatalyst.dll:ObjCRuntime.ErrorHelper.CreateError(System.Int32, System.Exception, System.String, System.Object[])
+Microsoft.MacCatalyst.dll:ObjCRuntime.ErrorHelper.CreateError(System.Int32, System.String, System.Object[])
+Microsoft.MacCatalyst.dll:ObjCRuntime.Extensions
+Microsoft.MacCatalyst.dll:ObjCRuntime.Extensions.AsByte(System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.IManagedRegistrar
+Microsoft.MacCatalyst.dll:ObjCRuntime.IManagedRegistrar ObjCRuntime.RegistrarHelper/MapInfo::Registrar
+Microsoft.MacCatalyst.dll:ObjCRuntime.IManagedRegistrar.LookupUnmanagedFunction(System.String, System.Int32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.INativeObject
+Microsoft.MacCatalyst.dll:ObjCRuntime.INativeObject._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.INativeObject.get_Handle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.INativeObjectProxyAttribute
+Microsoft.MacCatalyst.dll:ObjCRuntime.INativeObjectProxyAttribute.CreateObject(System.IntPtr, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.IntPtrEqualityComparer
+Microsoft.MacCatalyst.dll:ObjCRuntime.IntPtrEqualityComparer ObjCRuntime.Runtime::IntPtrEqualityComparer
+Microsoft.MacCatalyst.dll:ObjCRuntime.IntPtrEqualityComparer..ctor()
+Microsoft.MacCatalyst.dll:ObjCRuntime.IntPtrEqualityComparer.Equals(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.IntPtrEqualityComparer.GetHashCode(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Libraries
+Microsoft.MacCatalyst.dll:ObjCRuntime.Libraries/CoreFoundation
+Microsoft.MacCatalyst.dll:ObjCRuntime.Libraries/CoreFoundation..cctor()
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionEventArgs
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionEventArgs..ctor(System.Exception, ObjCRuntime.MarshalManagedExceptionMode)
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionEventArgs.get_ExceptionMode()
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionEventArgs.set_Exception(System.Exception)
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionEventArgs.set_ExceptionMode(ObjCRuntime.MarshalManagedExceptionMode)
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionHandler
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionHandler ObjCRuntime.Runtime::MarshalManagedException
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionHandler..ctor(System.Object, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionHandler.Invoke(System.Object, ObjCRuntime.MarshalManagedExceptionEventArgs)
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionMode
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionMode ObjCRuntime.MarshalManagedExceptionEventArgs::k__BackingField
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionMode ObjCRuntime.MarshalManagedExceptionEventArgs::ExceptionMode()
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionMode ObjCRuntime.MarshalManagedExceptionMode::Abort
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionMode ObjCRuntime.MarshalManagedExceptionMode::Default
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionMode ObjCRuntime.MarshalManagedExceptionMode::Disable
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionMode ObjCRuntime.MarshalManagedExceptionMode::ThrowObjectiveCException
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionMode ObjCRuntime.MarshalManagedExceptionMode::UnwindNativeCode
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionMode ObjCRuntime.Runtime::managed_exception_mode
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalManagedExceptionMode ObjCRuntime.Runtime/InitializationOptions::MarshalManagedExceptionMode
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionEventArgs
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionEventArgs..ctor(Foundation.NSException, ObjCRuntime.MarshalObjectiveCExceptionMode)
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionEventArgs.get_ExceptionMode()
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionEventArgs.set_Exception(Foundation.NSException)
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionEventArgs.set_ExceptionMode(ObjCRuntime.MarshalObjectiveCExceptionMode)
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionHandler
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionHandler ObjCRuntime.Runtime::MarshalObjectiveCException
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionHandler..ctor(System.Object, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionHandler.Invoke(System.Object, ObjCRuntime.MarshalObjectiveCExceptionEventArgs)
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionMode
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionMode ObjCRuntime.MarshalObjectiveCExceptionEventArgs::k__BackingField
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionMode ObjCRuntime.MarshalObjectiveCExceptionEventArgs::ExceptionMode()
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionMode ObjCRuntime.MarshalObjectiveCExceptionMode::Abort
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionMode ObjCRuntime.MarshalObjectiveCExceptionMode::Default
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionMode ObjCRuntime.MarshalObjectiveCExceptionMode::Disable
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionMode ObjCRuntime.MarshalObjectiveCExceptionMode::ThrowManagedException
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionMode ObjCRuntime.MarshalObjectiveCExceptionMode::UnwindManagedCode
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionMode ObjCRuntime.Runtime::objc_exception_mode
+Microsoft.MacCatalyst.dll:ObjCRuntime.MarshalObjectiveCExceptionMode ObjCRuntime.Runtime/InitializationOptions::MarshalObjectiveCExceptionMode
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.bool_objc_msgSend_IntPtr(System.IntPtr, System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.bool_objc_msgSend_NativeHandle(System.IntPtr, System.IntPtr, ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.bool_objc_msgSendSuper_IntPtr(System.IntPtr, System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.bool_objc_msgSendSuper_NativeHandle(System.IntPtr, System.IntPtr, ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.CGRect_objc_msgSend(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.IntPtr_objc_msgSend(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.IntPtr_objc_msgSendSuper(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.NativeHandle_objc_msgSend_CGRect(System.IntPtr, System.IntPtr, CoreGraphics.CGRect)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.NativeHandle_objc_msgSend_NativeHandle(System.IntPtr, System.IntPtr, ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.NativeHandle_objc_msgSend(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.NativeHandle_objc_msgSendSuper(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.UIntPtr_objc_msgSend(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.UIntPtr_objc_msgSendSuper(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_NativeHandle_bool(System.IntPtr, System.IntPtr, ObjCRuntime.NativeHandle, ObjCRuntime.NativeHandle, System.Byte)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle_UIntPtr(System.IntPtr, System.IntPtr, ObjCRuntime.NativeHandle, System.UIntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.void_objc_msgSend_NativeHandle(System.IntPtr, System.IntPtr, ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Messaging.void_objc_msgSend(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeAttribute
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeAttribute..ctor()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle CoreFoundation.CFArray::CFNullHandle
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSAutoreleasePool::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSAutoreleasePool::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSDictionary::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSDictionary::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSException::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSException::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSObject::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSObject::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSObject::handle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSObject::Handle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSObject::SuperHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSObjectData::classHandle
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle Foundation.NSObjectData::handle
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle ObjCRuntime.Class::handle
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle ObjCRuntime.Class::Handle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle ObjCRuntime.DisposableObject::handle
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle ObjCRuntime.DisposableObject::Handle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle ObjCRuntime.INativeObject::Handle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle ObjCRuntime.NativeHandle::Zero
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle ObjCRuntime.Runtime/ClassHandles::unused
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle ObjCRuntime.Selector::handle
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle ObjCRuntime.Selector::Handle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIApplication::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIApplication::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIButton::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIButton::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIControl::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIControl::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIResponder::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIResponder::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIScreen::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIScreen::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIView::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIView::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIViewController::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIViewController::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIWindow::class_ptr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle UIKit.UIWindow::ClassHandle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle..ctor(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.Equals(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.Equals(System.Object)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.get_Handle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.GetHashCode()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.op_Equality(ObjCRuntime.NativeHandle, ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.op_Equality(ObjCRuntime.NativeHandle, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.op_Implicit(ObjCRuntime.NativeHandle) => System.IntPtr
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.op_Implicit(System.IntPtr) => ObjCRuntime.NativeHandle
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.op_Inequality(ObjCRuntime.NativeHandle, ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.op_Inequality(ObjCRuntime.NativeHandle, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.op_Inequality(System.IntPtr, ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeHandle.ToString()
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeObjectExtensions
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeObjectExtensions.GetHandle(ObjCRuntime.INativeObject)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NativeObjectExtensions.GetNonNullHandle(ObjCRuntime.INativeObject, System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NSObjectProxyAttribute
+Microsoft.MacCatalyst.dll:ObjCRuntime.NSObjectProxyAttribute.CreateObject(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NSObjectProxyAttribute.GetClassHandle(out System.Boolean&)
+Microsoft.MacCatalyst.dll:ObjCRuntime.NSObjectProxyAttribute.LookupUnmanagedFunction(System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCException
+Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCException..ctor(Foundation.NSException)
+Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCException.AppendNativeStackTrace(System.Text.StringBuilder)
+Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCException.get_Message()
+Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCException.get_Name()
+Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCException.get_NSException()
+Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCException.get_Reason()
+Microsoft.MacCatalyst.dll:ObjCRuntime.ObjCException.ToString()
+Microsoft.MacCatalyst.dll:ObjCRuntime.ProtocolProxyAttribute
+Microsoft.MacCatalyst.dll:ObjCRuntime.ProtocolProxyAttribute.CreateObject(System.IntPtr, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper
+Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper.GetMapEntry(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper.GetMapEntry(System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper.Initialize()
+Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper.LookupUnmanagedFunction(System.IntPtr, System.String, System.Int32, System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper.LookupUnmanagedFunctionInAssembly(System.IntPtr, System.String, System.Int32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper.LookupUnmanagedFunctionInType(System.String, System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper.Register(ObjCRuntime.IManagedRegistrar)
+Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper.TryGetMapEntry(System.String, out ObjCRuntime.RegistrarHelper/MapInfo&)
+Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper/MapInfo
+Microsoft.MacCatalyst.dll:ObjCRuntime.RegistrarHelper/MapInfo..ctor(ObjCRuntime.IManagedRegistrar)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.g__ConstructINativeObjectViaFactoryMethod|289_0`1(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.g__ConstructNSObjectViaFactoryMethod|288_0`1(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.AllocGCHandle(System.Object, System.Runtime.InteropServices.GCHandleType)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.AllocGCHandle(System.Object)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.AppendAdditionalInformation(System.Text.StringBuilder, System.IntPtr, System.RuntimeMethodHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.attempt_retain_nsobject(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.AttemptRetainNSObject(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.CannotCreateManagedInstanceOfGenericType(System.IntPtr, System.IntPtr, System.Type, ObjCRuntime.Runtime/MissingCtorResolution, System.IntPtr, System.RuntimeMethodHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.ConstructINativeObject`1(System.IntPtr, System.Boolean, System.Type, ObjCRuntime.Runtime/MissingCtorResolution, System.IntPtr, System.RuntimeMethodHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.ConstructNSObject(System.IntPtr, System.IntPtr, ObjCRuntime.Runtime/MissingCtorResolution)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.ConstructNSObject`1(System.IntPtr, System.Type, ObjCRuntime.Runtime/MissingCtorResolution, System.IntPtr, System.RuntimeMethodHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.ConstructNSObject`1(System.IntPtr, System.Type, ObjCRuntime.Runtime/MissingCtorResolution)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.create_block_proxy(System.IntPtr, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.create_ns_exception(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.create_nsobject(System.IntPtr, System.IntPtr, Foundation.NSObject/Flags, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.create_product_exception_for_error(System.Int32, System.IntPtr, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.create_runtime_exception(System.Int32, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.CreateBlockProxy(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.CreateBlockProxy(System.Reflection.MethodInfo, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.CreateNSException(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.CreateNSObject(System.IntPtr, System.IntPtr, Foundation.NSObject/Flags)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.CreateProductException(System.Int32, System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.CreateRuntimeException(System.Int32, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.dispose(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.Dispose(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.FindProtocolWrapperType(System.Type)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.gc_collect(System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GCCollect()
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.get_class(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.get_exception_message(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.get_handle_for_inativeobject(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.get_inative_object_dynamic(System.IntPtr, System.SByte, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.get_inative_object_static(System.IntPtr, System.SByte, System.UInt32, System.UInt32, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.get_method_from_token(System.UInt32, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.get_nsobject_with_type(System.IntPtr, System.IntPtr, System.Int32*, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.get_object_type_fullname(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.get_selector(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetClass(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetExceptionMessage(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetGCHandleTarget(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetHandleForINativeObject(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetINativeObject_Dynamic(System.IntPtr, System.SByte, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetINativeObject_Static(System.IntPtr, System.SByte, System.UInt32, System.UInt32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetINativeObject(System.IntPtr, System.Boolean, System.Type, System.Type, System.IntPtr, System.RuntimeMethodHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetINativeObject(System.IntPtr, System.Boolean, System.Type, System.Type)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetINativeObject`1(System.IntPtr, System.Boolean, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetINativeObject`1(System.IntPtr, System.Boolean, System.Type, System.Boolean, System.IntPtr, System.RuntimeMethodHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetINativeObject`1(System.IntPtr, System.Boolean, System.Type, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetMethodFromToken(System.UInt32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetNSObject(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetNSObject(System.IntPtr, ObjCRuntime.Runtime/MissingCtorResolution, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetNSObject(System.IntPtr, System.Boolean, ObjCRuntime.Runtime/MissingCtorResolution, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetNSObject(System.IntPtr, System.Type, ObjCRuntime.Runtime/MissingCtorResolution, System.Boolean, System.Boolean, out System.Boolean&)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetNSObject(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetNSObject`1(System.IntPtr, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetNSObject`1(System.IntPtr, System.IntPtr, System.RuntimeMethodHandle, System.Boolean, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetNSObject`1(System.IntPtr, System.IntPtr, System.RuntimeMethodHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetNSObject`1(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetNSObjectWithType(System.IntPtr, System.IntPtr, System.Int32*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetObjectTypeFullName(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.GetSelector(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.has_nsobject(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.HasNSObject(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.Initialize(ObjCRuntime.Runtime/InitializationOptions*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.InitializePlatform(ObjCRuntime.Runtime/InitializationOptions*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.invoke_conforms_to_protocol(System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.InvokeConformsToProtocol(System.IntPtr, System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.lookup_managed_type_name(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.lookup_unmanaged_function(System.IntPtr, System.IntPtr, System.Int32, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.LookupINativeObjectImplementation(System.IntPtr, System.Type, System.Type, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.LookupManagedTypeName(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.LookupUnmanagedFunction(System.IntPtr, System.IntPtr, System.Int32, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.MissingCtor(System.IntPtr, System.IntPtr, System.Type, ObjCRuntime.Runtime/MissingCtorResolution, System.IntPtr, System.RuntimeMethodHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.NativeObjectHasDied(System.IntPtr, Foundation.NSObject)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.NSLog(System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.on_marshal_managed_exception(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.on_marshal_objectivec_exception(System.IntPtr, System.SByte, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.OnMarshalManagedException(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.OnMarshalObjectiveCException(System.IntPtr, System.SByte)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.print_all_exceptions_wrapper(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.PrintAllExceptions(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.PrintException(System.Exception, System.Boolean, System.Text.StringBuilder)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.reflection_type_get_full_name(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.RegisterDelegates(ObjCRuntime.Runtime/InitializationOptions*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.RegisterNSObject(Foundation.NSObject, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.ReleaseBlockOnMainThread(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.ReleaseBlockWhenDelegateIsCollected(System.IntPtr, System.Delegate)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.retain_nativeobject(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.RetainNativeObject(ObjCRuntime.INativeObject)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.RetainNativeObject(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.RetainNSObject(Foundation.NSObject)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.rethrow_managed_exception(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.RethrowManagedException(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.SafeInitialize(ObjCRuntime.Runtime/InitializationOptions*, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.SlowIsUserType(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.StringEquals(System.IntPtr, System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.throw_ns_exception(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.ThrowException(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.ThrowNSException(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.try_get_or_construct_nsobject(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.TryGetIsUserType(System.IntPtr, out System.Boolean&, out System.String&)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.TryGetNSObject(System.IntPtr, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.TryGetOrConstructNSObjectWrapped(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.TryReleaseINativeObject(ObjCRuntime.INativeObject)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.TypeGetFullName(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.unregister_nsobject(System.IntPtr, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.UnregisterNSObject(System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.UnregisterNSObject(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.unwrap_ns_exception(System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.UnwrapNSException(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.write(System.Int32, System.Byte[], System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.xamarin_is_user_type(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime.xamarin_log(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/ClassHandles
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/ClassHandles.InitializeClassHandles(System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/ClassHandles.SetHandle(System.Int32, ObjCRuntime.NativeHandle*, System.IntPtr*)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/Delegates
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/Delegates* ObjCRuntime.Runtime/InitializationOptions::Delegates
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/InitializationFlags
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/InitializationFlags ObjCRuntime.Runtime/InitializationFlags::IsCoreCLR
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/InitializationFlags ObjCRuntime.Runtime/InitializationFlags::IsManagedStaticRegistrar
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/InitializationFlags ObjCRuntime.Runtime/InitializationFlags::IsNativeAOT
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/InitializationFlags ObjCRuntime.Runtime/InitializationFlags::IsPartialStaticRegistrar
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/InitializationFlags ObjCRuntime.Runtime/InitializationFlags::IsSimulator
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/InitializationFlags ObjCRuntime.Runtime/InitializationFlags::IsTrimmableStaticRegistrar
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/InitializationFlags ObjCRuntime.Runtime/InitializationOptions::Flags
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/InitializationOptions
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/InitializationOptions* ObjCRuntime.Runtime::options
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MissingCtorResolution
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MissingCtorResolution ObjCRuntime.Runtime/MissingCtorResolution::Ignore
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MissingCtorResolution ObjCRuntime.Runtime/MissingCtorResolution::ThrowConstructor1NotFound
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MissingCtorResolution ObjCRuntime.Runtime/MissingCtorResolution::ThrowConstructor2NotFound
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTAssembly
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTAssembly* ObjCRuntime.Runtime/MTRegistrationMap::assemblies
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTClassMap
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTClassMap* ObjCRuntime.Runtime/MTRegistrationMap::map
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTFullTokenReference
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTFullTokenReference* ObjCRuntime.Runtime/MTRegistrationMap::full_token_references
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTManagedClassMap
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTManagedClassMap* ObjCRuntime.Runtime/MTRegistrationMap::skipped_map
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTProtocolMap
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTProtocolMap ObjCRuntime.Runtime/MTRegistrationMap::protocol_map
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTProtocolWrapperMap
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTProtocolWrapperMap* ObjCRuntime.Runtime/MTRegistrationMap::protocol_wrapper_map
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTRegistrationMap
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTRegistrationMap* ObjCRuntime.Runtime/InitializationOptions::RegistrationMap
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTTypeFlags
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTTypeFlags ObjCRuntime.Runtime/MTClassMap::flags
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTTypeFlags ObjCRuntime.Runtime/MTTypeFlags::CustomType
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTTypeFlags ObjCRuntime.Runtime/MTTypeFlags::None
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/MTTypeFlags ObjCRuntime.Runtime/MTTypeFlags::UserType
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/Trampolines
+Microsoft.MacCatalyst.dll:ObjCRuntime.Runtime/Trampolines* ObjCRuntime.Runtime/InitializationOptions::Trampolines
+Microsoft.MacCatalyst.dll:ObjCRuntime.RuntimeException
+Microsoft.MacCatalyst.dll:ObjCRuntime.RuntimeException..ctor(System.Int32, System.Boolean, System.Exception, System.String, System.Object[])
+Microsoft.MacCatalyst.dll:ObjCRuntime.RuntimeException.set_Code(System.Int32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.RuntimeException.set_Error(System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.RuntimeTypeHandleEqualityComparer
+Microsoft.MacCatalyst.dll:ObjCRuntime.RuntimeTypeHandleEqualityComparer ObjCRuntime.RegistrarHelper::RuntimeTypeHandleEqualityComparer
+Microsoft.MacCatalyst.dll:ObjCRuntime.RuntimeTypeHandleEqualityComparer..ctor()
+Microsoft.MacCatalyst.dll:ObjCRuntime.RuntimeTypeHandleEqualityComparer.Equals(System.RuntimeTypeHandle, System.RuntimeTypeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.RuntimeTypeHandleEqualityComparer.GetHashCode(System.RuntimeTypeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector..ctor(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector.Equals(ObjCRuntime.Selector)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector.Equals(System.Object)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector.get_Handle()
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector.GetHandle(System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector.GetHashCode()
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector.GetName(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector.sel_getName(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector.sel_isMapped(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.Selector.sel_registerName(System.IntPtr)
+Microsoft.MacCatalyst.dll:ObjCRuntime.SkippedObjectiveCTypeUniverse
+Microsoft.MacCatalyst.dll:ObjCRuntime.StringEqualityComparer
+Microsoft.MacCatalyst.dll:ObjCRuntime.StringEqualityComparer ObjCRuntime.RegistrarHelper::StringEqualityComparer
+Microsoft.MacCatalyst.dll:ObjCRuntime.StringEqualityComparer..ctor()
+Microsoft.MacCatalyst.dll:ObjCRuntime.StringEqualityComparer.Equals(System.String, System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.StringEqualityComparer.GetHashCode(System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.ThrowHelper
+Microsoft.MacCatalyst.dll:ObjCRuntime.ThrowHelper.ThrowArgumentException(System.String, System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.ThrowHelper.ThrowArgumentNullException(System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.ThrowHelper.ThrowObjectDisposedException(System.Object)
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientCFString
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientCFString..ctor(System.String)
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientCFString.Dispose()
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientCFString.op_Implicit(ObjCRuntime.TransientCFString) => System.IntPtr
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientString
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientString..ctor(System.String, ObjCRuntime.TransientString/Encoding)
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientString.AllocStringArray(System.String[], ObjCRuntime.TransientString/Encoding)
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientString.Dispose()
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientString.FreeStringArray(System.IntPtr, System.Int32)
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientString.op_Implicit(ObjCRuntime.TransientString) => System.IntPtr
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientString/Encoding
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientString/Encoding ObjCRuntime.TransientString/Encoding::Ansi
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientString/Encoding ObjCRuntime.TransientString/Encoding::Auto
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientString/Encoding ObjCRuntime.TransientString/Encoding::BStr
+Microsoft.MacCatalyst.dll:ObjCRuntime.TransientString/Encoding ObjCRuntime.TransientString/Encoding::Unicode
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeEqualityComparer
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeEqualityComparer ObjCRuntime.Runtime::TypeEqualityComparer
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeEqualityComparer..ctor()
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeEqualityComparer.Equals(System.Type, System.Type)
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeEqualityComparer.GetHashCode(System.Type)
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeMaps
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeMaps..cctor()
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeMaps.get_INativeObjectProxyTypes()
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeMaps.get_NSObjectProxyTypes()
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeMaps.get_NSObjectTypes()
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeMaps.get_ProtocolProxyTypes()
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeMaps.get_ProtocolWrapperTypes()
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeMaps.get_SkippedProxyTypes()
+Microsoft.MacCatalyst.dll:ObjCRuntime.TypeMaps.Initialize()
+Microsoft.MacCatalyst.dll:ObjCRuntime.UInt64EqualityComparer
+Microsoft.MacCatalyst.dll:ObjCRuntime.UInt64EqualityComparer ObjCRuntime.Runtime::UInt64EqualityComparer
+Microsoft.MacCatalyst.dll:ObjCRuntime.UInt64EqualityComparer..ctor()
+Microsoft.MacCatalyst.dll:ObjCRuntime.UInt64EqualityComparer.Equals(System.UInt64, System.UInt64)
+Microsoft.MacCatalyst.dll:ObjCRuntime.UInt64EqualityComparer.GetHashCode(System.UInt64)
+Microsoft.MacCatalyst.dll:System.Boolean AppKit.ActionDispatcher::WorksWhenModal()
+Microsoft.MacCatalyst.dll:System.Boolean Foundation.NSObject::disposed()
+Microsoft.MacCatalyst.dll:System.Boolean Foundation.NSObject::HasManagedRef()
+Microsoft.MacCatalyst.dll:System.Boolean Foundation.NSObject::InFinalizerQueue()
+Microsoft.MacCatalyst.dll:System.Boolean Foundation.NSObject::IsDirectBinding()
+Microsoft.MacCatalyst.dll:System.Boolean Foundation.NSObject::IsRegisteredToggleRef()
+Microsoft.MacCatalyst.dll:System.Boolean Foundation.NSObject/NSObject_Disposer::draining
+Microsoft.MacCatalyst.dll:System.Boolean Foundation.NSObjectDataHandle::invalidated
+Microsoft.MacCatalyst.dll:System.Boolean Foundation.NSObjectDataHandle::IsInvalid()
+Microsoft.MacCatalyst.dll:System.Boolean Foundation.ProtocolAttribute::k__BackingField
+Microsoft.MacCatalyst.dll:System.Boolean Foundation.RegisterAttribute::is_wrapper
+Microsoft.MacCatalyst.dll:System.Boolean Foundation.RegisterAttribute::IsWrapper()
+Microsoft.MacCatalyst.dll:System.Boolean ObjCRuntime.Class::ThrowOnInitFailure
+Microsoft.MacCatalyst.dll:System.Boolean ObjCRuntime.DisposableObject::owns
+Microsoft.MacCatalyst.dll:System.Boolean ObjCRuntime.Runtime::initialized
+Microsoft.MacCatalyst.dll:System.Boolean ObjCRuntime.Runtime::IsARM64CallingConvention
+Microsoft.MacCatalyst.dll:System.Boolean ObjCRuntime.RuntimeException::k__BackingField
+Microsoft.MacCatalyst.dll:System.Boolean ObjCRuntime.RuntimeException::Error()
+Microsoft.MacCatalyst.dll:System.Boolean UIKit.UIApplication::CheckForEventAndDelegateMismatches
+Microsoft.MacCatalyst.dll:System.Boolean UIKit.UIApplication::CheckForIllegalCrossThreadCalls
+Microsoft.MacCatalyst.dll:System.Collections.Generic.Dictionary`2 ObjCRuntime.Runtime::usertype_cache
+Microsoft.MacCatalyst.dll:System.Collections.Generic.Dictionary`2 ObjCRuntime.Class::verified_assemblies
+Microsoft.MacCatalyst.dll:System.Collections.Generic.Dictionary`2 ObjCRuntime.Runtime::object_map
+Microsoft.MacCatalyst.dll:System.Collections.Generic.Dictionary`2 ObjCRuntime.RegistrarHelper::wrapper_types
+Microsoft.MacCatalyst.dll:System.Collections.Generic.Dictionary`2 ObjCRuntime.RegistrarHelper::assembly_map
+Microsoft.MacCatalyst.dll:System.Collections.Generic.Dictionary`2 ObjCRuntime.Class::type_to_class
+Microsoft.MacCatalyst.dll:System.Collections.Generic.Dictionary`2 ObjCRuntime.Runtime::intptr_bool_ctor_cache
+Microsoft.MacCatalyst.dll:System.Collections.Generic.Dictionary`2 ObjCRuntime.Runtime::intptr_ctor_cache
+Microsoft.MacCatalyst.dll:System.Collections.Generic.Dictionary`2 ObjCRuntime.Class::token_to_member
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::nsobject_types
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::NSObjectTypes()
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::inativeobject_proxy_types
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::INativeObjectProxyTypes()
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::nsobject_proxy_types
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::NSObjectProxyTypes()
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::protocol_proxy_types
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::protocol_wrapper_types
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::ProtocolProxyTypes()
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::ProtocolWrapperTypes()
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::skipped_proxy_types
+Microsoft.MacCatalyst.dll:System.Collections.Generic.IReadOnlyDictionary`2 ObjCRuntime.TypeMaps::SkippedProxyTypes()
+Microsoft.MacCatalyst.dll:System.Collections.Generic.KeyValuePair`2 Foundation.NSDictionary/d__66::<>2__current
+Microsoft.MacCatalyst.dll:System.Collections.Generic.KeyValuePair`2 Foundation.NSDictionary/d__66::System.Collections.Generic.IEnumerator>.Current()
+Microsoft.MacCatalyst.dll:System.Collections.Generic.List`1 Foundation.NSObject/NSObject_Disposer::drainList1
+Microsoft.MacCatalyst.dll:System.Collections.Generic.List`1 Foundation.NSObject/NSObject_Disposer::drainList2
+Microsoft.MacCatalyst.dll:System.Collections.Generic.List`1 Foundation.NSObject/NSObject_Disposer::handles
+Microsoft.MacCatalyst.dll:System.Collections.Generic.List`1 ObjCRuntime.Runtime::delegates
+Microsoft.MacCatalyst.dll:System.Exception ObjCRuntime.MarshalManagedExceptionEventArgs::k__BackingField
+Microsoft.MacCatalyst.dll:System.Exception ObjCRuntime.MarshalManagedExceptionEventArgs::Exception()
+Microsoft.MacCatalyst.dll:System.Func`2 CoreFoundation.CFArray/<>O::<0>__FromHandle
+Microsoft.MacCatalyst.dll:System.Func`2 CoreFoundation.CFArray/O__25_0`1::<0>__DefaultConvert
+Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSDictionary::System.Collections.Generic.ICollection>.Count()
+Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSDictionary/d__66::<>1__state
+Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSDictionary/d__66::<>7__wrap2
+Microsoft.MacCatalyst.dll:System.Int32 Foundation.NSObjectFlag::value__
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.ArgumentSemantic::value__
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.BlockCollector::count
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Dlfcn/Mode::value__
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.MarshalManagedExceptionMode::value__
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.MarshalObjectiveCExceptionMode::value__
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Runtime/InitializationFlags::value__
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Runtime/InitializationOptions::Size
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Runtime/MissingCtorResolution::value__
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Runtime/MTRegistrationMap::assembly_count
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Runtime/MTRegistrationMap::full_token_reference_count
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Runtime/MTRegistrationMap::map_count
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Runtime/MTRegistrationMap::protocol_count
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Runtime/MTRegistrationMap::protocol_wrapper_count
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.Runtime/MTRegistrationMap::skipped_map_count
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.RuntimeException::k__BackingField
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.RuntimeException::Code()
+Microsoft.MacCatalyst.dll:System.Int32 ObjCRuntime.TransientString/Encoding::value__
+Microsoft.MacCatalyst.dll:System.IntPtr CoreFoundation.CFArray::_CFNullHandle()
+Microsoft.MacCatalyst.dll:System.IntPtr CoreFoundation.CFRange::len
+Microsoft.MacCatalyst.dll:System.IntPtr CoreFoundation.CFRange::loc
+Microsoft.MacCatalyst.dll:System.IntPtr Foundation.NSObject/NSObject_Disposer::class_ptr
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.BlockCollector::block
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Libraries/CoreFoundation::Handle
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.NativeHandle::handle
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.NativeHandle::Handle()
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime::NSObjectClass
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::array_get
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::array_setref
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::attempt_retain_nsobject
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_box
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_class_get_name
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_class_get_namespace
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_create_array
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_create_exception
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_create_gchandle
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_free_gchandle
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_get_array_length
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_get_assembly_location
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_get_assembly_name
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_get_element_class
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_get_enum_basetype
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_get_method_declaring_type
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_get_method_full_name
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_get_monoobject
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_get_nullable_element_type
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_is_byref
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_is_class_of_type
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_is_delegate
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_is_enum
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_is_nullable
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_is_valuetype
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_isinstance
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_lookup_class
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_method_get_signature
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_mono_hash_table_create
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_mono_hash_table_insert
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_mono_hash_table_lookup
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_new_string
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_object_get_type
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_raise_appdomain_unhandled_exception_event
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_runtime_invoke_method
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_set_array_struct_value
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_set_pending_exception
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_sizeof
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_string_to_utf8
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::bridge_type_to_class
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::convert_nsstring_to_smart_enum
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::convert_smart_enum_to_nsstring
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::create_block_proxy
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::create_delegate_proxy
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::create_ns_exception
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::create_nsobject
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::create_product_exception_for_error
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::create_runtime_exception
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::dispose
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::find_assembly
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::gc_collect
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_block_wrapper_creator
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_class
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_exception_message
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_flags_for_nsobject
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_generic_method_from_token
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_handle_for_inativeobject
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_inative_object_dynamic
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_inative_object_static
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_method_and_object_for_selector
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_method_for_selector
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_method_from_token
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_nsobject_with_type
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_object_type_fullname
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::get_selector
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::has_nsobject
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::invoke_conforms_to_protocol
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::is_parameter_out
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::is_parameter_transient
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::lookup_managed_type_name
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::lookup_unmanaged_function
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::on_marshal_managed_exception
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::on_marshal_objectivec_exception
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::print_all_exceptions_wrapper
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::reflection_type_get_full_name
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::register_assembly
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::register_entry_assembly
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::retain_nativeobject
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::rethrow_managed_exception
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::set_flags_for_nsobject
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::throw_ns_exception
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::try_get_or_construct_nsobject
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::unregister_nsobject
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Delegates::unwrap_ns_exception
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/InitializationOptions::AssemblyLocations
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/InitializationOptions::reference_tracking_begin_end_callback
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/InitializationOptions::reference_tracking_is_referenced_callback
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/InitializationOptions::reference_tracking_tracked_object_entered_finalization
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/InitializationOptions::unhandled_exception_handler
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/InitializationOptions::xamarin_objc_msgsend
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/InitializationOptions::xamarin_objc_msgsend_stret
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/InitializationOptions::xamarin_objc_msgsend_super
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/InitializationOptions::xamarin_objc_msgsend_super_stret
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/MTAssembly::mvid
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/MTAssembly::name
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/MTClassMap::handle
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/MTRegistrationMap::product_hash
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::ctor_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::fpret_double_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::fpret_single_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::get_gchandle_flags_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::get_gchandle_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::get_nsobject_data_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::long_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::release_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::retain_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::retainWeakReference_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::set_gchandle_flags_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::set_gchandle_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::static_fpret_double_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::static_fpret_single_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::static_long_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::static_stret_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::static_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::stret_tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.Runtime/Trampolines::tramp
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.TransientCFString::ptr
+Microsoft.MacCatalyst.dll:System.IntPtr ObjCRuntime.TransientString::ptr
+Microsoft.MacCatalyst.dll:System.IntPtr* ObjCRuntime.Runtime/MTProtocolMap::protocols
+Microsoft.MacCatalyst.dll:System.IntPtr* ObjCRuntime.Runtime/MTRegistrationMap::classHandles
+Microsoft.MacCatalyst.dll:System.Nullable`1 ObjCRuntime.Class::verify_static_registrar_code
+Microsoft.MacCatalyst.dll:System.Object Foundation.NSObject/NSObject_Disposer::lock_obj
+Microsoft.MacCatalyst.dll:System.Object ObjCRuntime.Class::verification_lock
+Microsoft.MacCatalyst.dll:System.Object ObjCRuntime.Runtime::lock_obj
+Microsoft.MacCatalyst.dll:System.Object ObjCRuntime.TypeMaps::lock_obj
+Microsoft.MacCatalyst.dll:System.Reflection.Assembly Foundation.NSObject::PlatformAssembly
+Microsoft.MacCatalyst.dll:System.Runtime.CompilerServices.ConditionalWeakTable`2 ObjCRuntime.Runtime::block_lifetime_table
+Microsoft.MacCatalyst.dll:System.Runtime.CompilerServices.ConditionalWeakTable`2 ObjCRuntime.Class::assembly_to_name
+Microsoft.MacCatalyst.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::height
+Microsoft.MacCatalyst.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::width
+Microsoft.MacCatalyst.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::x
+Microsoft.MacCatalyst.dll:System.Runtime.InteropServices.NFloat CoreGraphics.CGRect::y
+Microsoft.MacCatalyst.dll:System.String CoreFoundation.CFString::str
+Microsoft.MacCatalyst.dll:System.String Foundation.ExportAttribute::selector
+Microsoft.MacCatalyst.dll:System.String Foundation.NSException::Name()
+Microsoft.MacCatalyst.dll:System.String Foundation.NSException::Reason()
+Microsoft.MacCatalyst.dll:System.String Foundation.NSObject::Description()
+Microsoft.MacCatalyst.dll:System.String Foundation.RegisterAttribute::name
+Microsoft.MacCatalyst.dll:System.String ObjCRuntime.Class::Name()
+Microsoft.MacCatalyst.dll:System.String ObjCRuntime.ObjCException::Message()
+Microsoft.MacCatalyst.dll:System.String ObjCRuntime.ObjCException::Name()
+Microsoft.MacCatalyst.dll:System.String ObjCRuntime.ObjCException::Reason()
+Microsoft.MacCatalyst.dll:System.String[] Foundation.NSException::CallStackSymbols()
+Microsoft.MacCatalyst.dll:System.Threading.Thread UIKit.UIApplication::mainThread
+Microsoft.MacCatalyst.dll:System.Type Foundation.ProtocolAttribute::k__BackingField
+Microsoft.MacCatalyst.dll:System.Type Foundation.ProtocolAttribute::WrapperType()
+Microsoft.MacCatalyst.dll:System.Type[] ObjCRuntime.Class::class_to_type
+Microsoft.MacCatalyst.dll:System.UInt32 Foundation.NSObject/Flags::value__
+Microsoft.MacCatalyst.dll:System.UInt32 Foundation.NSObject/XamarinGCHandleFlags::value__
+Microsoft.MacCatalyst.dll:System.UInt32 ObjCRuntime.Runtime/MTClassMap::type_reference
+Microsoft.MacCatalyst.dll:System.UInt32 ObjCRuntime.Runtime/MTFullTokenReference::assembly_index
+Microsoft.MacCatalyst.dll:System.UInt32 ObjCRuntime.Runtime/MTFullTokenReference::module_token
+Microsoft.MacCatalyst.dll:System.UInt32 ObjCRuntime.Runtime/MTFullTokenReference::token
+Microsoft.MacCatalyst.dll:System.UInt32 ObjCRuntime.Runtime/MTManagedClassMap::actual_reference
+Microsoft.MacCatalyst.dll:System.UInt32 ObjCRuntime.Runtime/MTManagedClassMap::skipped_reference
+Microsoft.MacCatalyst.dll:System.UInt32 ObjCRuntime.Runtime/MTProtocolWrapperMap::protocol_token
+Microsoft.MacCatalyst.dll:System.UInt32 ObjCRuntime.Runtime/MTProtocolWrapperMap::wrapper_token
+Microsoft.MacCatalyst.dll:System.UInt32 ObjCRuntime.Runtime/MTTypeFlags::value__
+Microsoft.MacCatalyst.dll:System.UInt32* ObjCRuntime.Runtime/MTProtocolMap::protocol_tokens
+Microsoft.MacCatalyst.dll:System.UInt64 UIKit.UIControlState::value__
+Microsoft.MacCatalyst.dll:System.UIntPtr Foundation.NSDictionary::Count()
+Microsoft.MacCatalyst.dll:UIKit.UIApplication
+Microsoft.MacCatalyst.dll:UIKit.UIApplication._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:UIKit.UIApplication._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIApplication..cctor()
+Microsoft.MacCatalyst.dll:UIKit.UIApplication..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIApplication.Dispose(System.Boolean)
+Microsoft.MacCatalyst.dll:UIKit.UIApplication.get_ClassHandle()
+Microsoft.MacCatalyst.dll:UIKit.UIApplication.Initialize()
+Microsoft.MacCatalyst.dll:UIKit.UIApplication.Main(System.String[], System.Type, System.Type)
+Microsoft.MacCatalyst.dll:UIKit.UIApplication.UIApplicationMain(System.Int32, System.String[], System.IntPtr, System.IntPtr)
+Microsoft.MacCatalyst.dll:UIKit.UIApplication.xamarin_UIApplicationMain(System.Int32, System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*)
+Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate
+Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate..ctor()
+Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate..ctor(System.IntPtr, ObjCRuntime.IManagedRegistrar)
+Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate.FinishedLaunching(UIKit.UIApplication, Foundation.NSDictionary)
+Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__
+Microsoft.MacCatalyst.dll:UIKit.UIApplicationDelegate/__Registrar_Callbacks__.callback_566_UIKit_UIApplicationDelegate__ctor(System.IntPtr, System.IntPtr, System.Byte*, System.IntPtr*)
+Microsoft.MacCatalyst.dll:UIKit.UIButton
+Microsoft.MacCatalyst.dll:UIKit.UIButton..cctor()
+Microsoft.MacCatalyst.dll:UIKit.UIButton..ctor(CoreGraphics.CGRect)
+Microsoft.MacCatalyst.dll:UIKit.UIButton..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIButton.get_ClassHandle()
+Microsoft.MacCatalyst.dll:UIKit.UIButton.SetTitle(System.String, UIKit.UIControlState)
+Microsoft.MacCatalyst.dll:UIKit.UIControl
+Microsoft.MacCatalyst.dll:UIKit.UIControl..cctor()
+Microsoft.MacCatalyst.dll:UIKit.UIControl..ctor(Foundation.NSObjectFlag)
+Microsoft.MacCatalyst.dll:UIKit.UIControl..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIControl.get_ClassHandle()
+Microsoft.MacCatalyst.dll:UIKit.UIControlState
+Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Application
+Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Disabled
+Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Focused
+Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Highlighted
+Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Normal
+Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Reserved
+Microsoft.MacCatalyst.dll:UIKit.UIControlState UIKit.UIControlState::Selected
+Microsoft.MacCatalyst.dll:UIKit.UIKitSynchronizationContext
+Microsoft.MacCatalyst.dll:UIKit.UIKitSynchronizationContext..ctor()
+Microsoft.MacCatalyst.dll:UIKit.UIResponder
+Microsoft.MacCatalyst.dll:UIKit.UIResponder..cctor()
+Microsoft.MacCatalyst.dll:UIKit.UIResponder..ctor(Foundation.NSObjectFlag)
+Microsoft.MacCatalyst.dll:UIKit.UIResponder..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIResponder.get_ClassHandle()
+Microsoft.MacCatalyst.dll:UIKit.UIScreen
+Microsoft.MacCatalyst.dll:UIKit.UIScreen UIKit.UIScreen::MainScreen()
+Microsoft.MacCatalyst.dll:UIKit.UIScreen._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:UIKit.UIScreen._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIScreen..cctor()
+Microsoft.MacCatalyst.dll:UIKit.UIScreen..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIScreen.Dispose(System.Boolean)
+Microsoft.MacCatalyst.dll:UIKit.UIScreen.get_Bounds()
+Microsoft.MacCatalyst.dll:UIKit.UIScreen.get_ClassHandle()
+Microsoft.MacCatalyst.dll:UIKit.UIScreen.get_MainScreen()
+Microsoft.MacCatalyst.dll:UIKit.UIView
+Microsoft.MacCatalyst.dll:UIKit.UIView UIKit.UIViewController::View()
+Microsoft.MacCatalyst.dll:UIKit.UIView._Xamarin_ConstructINativeObject(ObjCRuntime.NativeHandle, System.Boolean)
+Microsoft.MacCatalyst.dll:UIKit.UIView._Xamarin_ConstructNSObject(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIView..cctor()
+Microsoft.MacCatalyst.dll:UIKit.UIView..ctor(Foundation.NSObjectFlag)
+Microsoft.MacCatalyst.dll:UIKit.UIView..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIView.AddSubview(UIKit.UIView)
+Microsoft.MacCatalyst.dll:UIKit.UIView.Dispose(System.Boolean)
+Microsoft.MacCatalyst.dll:UIKit.UIView.get_Bounds()
+Microsoft.MacCatalyst.dll:UIKit.UIView.get_ClassHandle()
+Microsoft.MacCatalyst.dll:UIKit.UIViewController
+Microsoft.MacCatalyst.dll:UIKit.UIViewController UIKit.UIWindow::RootViewController()
+Microsoft.MacCatalyst.dll:UIKit.UIViewController..cctor()
+Microsoft.MacCatalyst.dll:UIKit.UIViewController..ctor()
+Microsoft.MacCatalyst.dll:UIKit.UIViewController..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIViewController.Add(UIKit.UIView)
+Microsoft.MacCatalyst.dll:UIKit.UIViewController.Dispose(System.Boolean)
+Microsoft.MacCatalyst.dll:UIKit.UIViewController.get_ClassHandle()
+Microsoft.MacCatalyst.dll:UIKit.UIViewController.get_View()
+Microsoft.MacCatalyst.dll:UIKit.UIWindow
+Microsoft.MacCatalyst.dll:UIKit.UIWindow..cctor()
+Microsoft.MacCatalyst.dll:UIKit.UIWindow..ctor(CoreGraphics.CGRect)
+Microsoft.MacCatalyst.dll:UIKit.UIWindow..ctor(ObjCRuntime.NativeHandle)
+Microsoft.MacCatalyst.dll:UIKit.UIWindow.Dispose(System.Boolean)
+Microsoft.MacCatalyst.dll:UIKit.UIWindow.get_ClassHandle()
+Microsoft.MacCatalyst.dll:UIKit.UIWindow.MakeKeyAndVisible()
+Microsoft.MacCatalyst.dll:UIKit.UIWindow.set_RootViewController(UIKit.UIViewController)
+SizeTestApp.dll:
+SizeTestApp.dll:MySimpleApp.AppDelegate
+SizeTestApp.dll:MySimpleApp.AppDelegate..ctor()
+SizeTestApp.dll:MySimpleApp.AppDelegate..ctor(System.IntPtr, ObjCRuntime.IManagedRegistrar)
+SizeTestApp.dll:MySimpleApp.AppDelegate.FinishedLaunching(UIKit.UIApplication, Foundation.NSDictionary)
+SizeTestApp.dll:MySimpleApp.AppDelegate/__Registrar_Callbacks__
+SizeTestApp.dll:MySimpleApp.AppDelegate/__Registrar_Callbacks__.callback_0_MySimpleApp_AppDelegate_FinishedLaunching(System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr, System.IntPtr*)
+SizeTestApp.dll:MySimpleApp.AppDelegate/__Registrar_Callbacks__.callback_1_MySimpleApp_AppDelegate__ctor(System.IntPtr, System.IntPtr, System.Byte*, System.IntPtr*)
+SizeTestApp.dll:MySimpleApp.Program
+SizeTestApp.dll:MySimpleApp.Program..ctor()
+SizeTestApp.dll:MySimpleApp.Program.Main(System.String[])
+SizeTestApp.dll:UIKit.UIWindow MySimpleApp.AppDelegate::window
+System.Private.CoreLib.dll:<>y__InlineArray2`1
+System.Private.CoreLib.dll:<>y__InlineArray3`1
+System.Private.CoreLib.dll:<>y__InlineArray4`1
+System.Private.CoreLib.dll:
+System.Private.CoreLib.dll:
+System.Private.CoreLib.dll:.InlineArrayAsReadOnlySpan`2(TBuffer&, System.Int32)
+System.Private.CoreLib.dll:.InlineArrayAsSpan`2(TBuffer&, System.Int32)
+System.Private.CoreLib.dll:.InlineArrayElementRef`2(TBuffer&, System.Int32)
+System.Private.CoreLib.dll:.InlineArrayFirstElementRef`2(TBuffer&)
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=12
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=12 ::69EADD2D8A0D38E5F581C5F3533EE497009AD4A2B8ECA04B388D4CB5B41ACEA5
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=12 ::9D61D7D7A1AA7E8ED5214C2F39E0C55230433C7BA728C92913CA4E1967FAF8EA
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=12528
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=12528 ::5509BDB573B59EF47196948FA73FF56E0321DE22E0CF20F229C53255C8D69449
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::2F3EFC9595514E83DED03093C4F3E3C781A650E1AAB8CA350537CD1A47E1EE8E
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=128 ::F8919BA0F50317229A66884F9CE4E004B755100D8A4000A28D468B0627472F4D
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1316 ::A72EB4166B1B422391E0F6E483BEF87AE75881E655BCB152E37F3D9688B2AA71
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1472_Align=2 ::7BEC6AD454781FDCD8D475B3418629CBABB3BF9CA66FA80009D608A1A60D06962
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=152_Align=8 ::DD471F12FFA94CC557A02A91C2CBB95F551AB28C8BBF297B2F953B8886BCCF6D8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=15552 ::3A2A62DD9288C777284B5B71FB3EFB59CFDF6BF81068A16795E6155DB8BFA701
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=16
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=16 ::F7548C023E431138B11357593F5CCEB9DD35EB0B0A2041F0B1560212EEB6F13E
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=168_Align=8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=168_Align=8 ::4BAA1F30A81D087D4A1F3FFD0563EF5C9FCACD16C3D3C8FCA617EE9C3233E9568
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1728
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=1728 ::F7F034FC00313E03A8B464F5FE1942A0B2B7BB8351261C33F57B9BF578019079
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=174_Align=2
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=174_Align=2 ::538F052AB907338D0E8980BC5D8AD76919B39F0248ACDFAFAAA0CC76E39948F72
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=174_Align=2 ::B2DCA9FD613841289369C721661A31B454A090D2146EFE106203F7821567907D2
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=201
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=201 ::655761BC5B553103BD6B01577097EA28941852F328FFD28398C7ECA4763ADAAA
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=2176
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=2176 ::3175E2EA9A4E12A9094BD49954685869A17834D139114F90C4BA9EA2E3E94F4A
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=24_Align=8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=24_Align=8 ::1537CF074FEBB1EDD62F5C35E2A77A575ED00CD6C5D8F479EFA4302E2F7576888
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=24_Align=8 ::1E398465A9EE43BEF177E8E00D8C5348363E726339A46C767812C81310C00CB28
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=24_Align=8 ::83F180C4F05CDA92C6CE1FB81ECB9031C503C1906040707C412F2BC7CB609F2A8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=24_Align=8 ::9287D942CCFE5B2A54D81BDDC56BD89F2DC6C4C8B31507E6284F8D25D10093678
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=24_Align=8 ::EC85ED774A75308D011FEF4A32204FB9725776189F565C95E968E241738E89D48
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=241
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=241 ::C35BD9B3B26B935B470B4D2871408ED9BFBF08374777428D5E4C4A44DFF0BD8D
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=256
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=256 ::1D715D2A2ED1CDD8C368F519DF4B8B9748F65E031AEA80652432FBBA5C35DFE6
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=256 ::21244F82B210125632917591768F6BF22EB6861F80C6C25A25BD26DFB580EA7B
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=256_Align=8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=256_Align=8 ::40BC6C50487BFA78776C051EF7555931E4F15E5CEE9481EB280B1C2630B906B48
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=288_Align=4 ::74BCD6ED20AF2231F2BB1CDE814C5F4FF48E54BAC46029EEF90DDF4A208E2B204
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32 ::3BF63951626584EB1653F9B8DBB590A5EE1EAE1135A904B9317C3773896DF076
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32 ::4BCD43D478B9229AB7A13406353712C7944B60348C36B4D0E6B789D10F697652
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32 ::FCD8A4EE2AE994445CD4E8AB39A4B0B6863F3396CF0806E73A45E8A80824E2E4
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32_Align=4
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32_Align=4 ::872CF31969B30D16D8B7FD68ABCEBFD7F8F3336BA347CD8712D80E58CB1EB6674
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32_Align=4 ::C69994AC61B52FBCEA582D6CCCD595C12E00BDB18F0C6F593FB6B393CAEDB08C4
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32_Align=8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32_Align=8 ::321F9E46BD1833FD819E17E50CBC1681CE91FD99CF5112DFAB7FC322FE3E9EC58
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32_Align=8 ::501E4F476B5C5D742AB5526561490A19EF5F752BEC30E7C5B172D05897A989328
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=32_Align=8 ::739592F1F51C1B5B4053CDFD26932FE506C041EC6B08A39DCE012EADDA72ADA78
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=3389
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=3389 ::DC23228F0B3106524845148F546F99D1CA867B3CB043B96731BBC3C46DF4368B
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=40_Align=4
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=40_Align=4 ::A516EECB41051151F0183A8B0B6F6693C43F7D9E1815F85CAAAB18E00A5269A24
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=482
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=482 ::15C0F30B8F562907D875D51E89D58456B9AC8FF3FCEEBA3707CF8ACB719233CA
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=512
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=512 ::915DB32CFB126970AAEB23CB96C97DBC2F59FAF24BA23EBB145D0BB6F09D0638
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=52_Align=4
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=52_Align=4 ::5857EE4CE98BFABBD62B385C1098507DD0052FF3951043AAD6A1DABD495F18AA4
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=52_Align=4 ::93F28AF88A06482BE13F8D0354B6A7676DDAED573EA3938C50F6E53E6D6BB0B64
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=52_Align=4 ::FADB218011E7702BB9575D0C32A685DA10B5C72EB809BD9A955DB1C76E4D83154
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=52_Align=4 ::FC5B0FD4492EC7BC85845E312A7A1469DF87CA5BCA5B5B9E0B3030E6E11E48E64
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=64
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=64 ::2805A8107EE40ABA4832FDC9259087C5CD75B60A8435CC5D1E5904674E1B9054
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=64_Align=8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=64_Align=8 ::70871E7CEBC5FB665C6CDA09BCB582780757E8F266C78289B5A1553B02AA3D828
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=648_Align=8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=648_Align=8 ::67856A16DB0550FDAB4D1A9B208B0C155C4679CA116BF867B74ED2A0AA4D29558
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=6912
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=6912 ::1054446A755ED07153AB2C399EF1F042B7413D710FA8F72EE35D6A68F92F16B7
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=696_Align=8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=696_Align=8 ::02BF302F66F50150BCF5E322DA879E92E417084D14FBE4F5345DDCB68F863E518
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=76_Align=4
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=76_Align=4 ::25308BAB47481701F1E861B1EA4F2409E73ABB14E9579C26DF4ABE440A0DCF0A4
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=88_Align=8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=88_Align=8 ::40EC13C575237954625B718CA2B291A90543D086FE5E3258F158FDDD3A9067CC8
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=936_Align=4
+System.Private.CoreLib.dll:/__StaticArrayInitTypeSize=936_Align=4 ::BAB9BE2886696BD36593C4F3A85B4FA59F85A673FE44AB7EBB4F314165F9B6F14
+System.Private.CoreLib.dll: