diff --git a/Assets/AddressableAssetsData/iOS/addressables_content_state.bin b/Assets/AddressableAssetsData/iOS/addressables_content_state.bin
index 4900bf8..90ada7d 100644
Binary files a/Assets/AddressableAssetsData/iOS/addressables_content_state.bin and b/Assets/AddressableAssetsData/iOS/addressables_content_state.bin differ
diff --git a/Assets/AddressableAssetsData/link.xml b/Assets/AddressableAssetsData/link.xml
new file mode 100644
index 0000000..892bcad
--- /dev/null
+++ b/Assets/AddressableAssetsData/link.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Assets/AddressableAssetsData/link.xml.meta b/Assets/AddressableAssetsData/link.xml.meta
new file mode 100644
index 0000000..b90107a
--- /dev/null
+++ b/Assets/AddressableAssetsData/link.xml.meta
@@ -0,0 +1,7 @@
+fileFormatVersion: 2
+guid: 72ab2c30ef1ed4d489ce1dfff8f86119
+TextScriptImporter:
+ externalObjects: {}
+ userData:
+ assetBundleName:
+ assetBundleVariant:
diff --git a/Assets/AppsFlyer/Plugins/iOS/AFUnityStoreKit2Bridge.swift b/Assets/AppsFlyer/Plugins/iOS/AFUnityStoreKit2Bridge.swift
deleted file mode 100755
index e44f781..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AFUnityStoreKit2Bridge.swift
+++ /dev/null
@@ -1,79 +0,0 @@
-import Foundation
-import StoreKit
-
-#if canImport(PurchaseConnector)
-import PurchaseConnector
-
-@available(iOS 15.0, *)
-@objc
-public class AFUnityStoreKit2Bridge: NSObject {
- @objc
- public static func fetchAFSDKTransactionSK2(withTransactionId transactionId: String, completion: @escaping (AFSDKTransactionSK2?) -> Void) {
- guard let transactionIdUInt64 = UInt64(transactionId) else {
- print("Invalid transaction ID format.")
- completion(nil)
- return
- }
- Task {
- for await result in StoreKit.Transaction.all {
- if case .verified(let transaction) = result, transaction.id == transactionIdUInt64 {
- let afTransaction = AFSDKTransactionSK2(transaction: transaction)
- DispatchQueue.main.async {
- completion(afTransaction)
- }
- return
- }
- }
- DispatchQueue.main.async {
- completion(nil)
- }
- }
- }
-
- @objc
- public static func extractSK2ProductInfo(_ products: [AFSDKProductSK2]) -> NSArray {
- var result: [[String: Any]] = []
-
- for product in products {
- if let swiftProduct = Mirror(reflecting: product).children.first(where: { $0.label == "product" })?.value {
- let productId = (swiftProduct as? NSObject)?.value(forKey: "id") as? String ?? ""
- let title = (swiftProduct as? NSObject)?.value(forKey: "displayName") as? String ?? ""
- let desc = (swiftProduct as? NSObject)?.value(forKey: "description") as? String ?? ""
- let price = (swiftProduct as? NSObject)?.value(forKey: "price") as? NSDecimalNumber ?? 0
-
- result.append([
- "productIdentifier": productId,
- "localizedTitle": title,
- "localizedDescription": desc,
- "price": price
- ])
- }
- }
-
- return result as NSArray
- }
-
- @objc
- public static func extractSK2TransactionInfo(_ transactions: [AFSDKTransactionSK2]) -> NSArray {
- var result: [[String: Any]] = []
-
- for txn in transactions {
- guard let mirrorChild = Mirror(reflecting: txn).children.first(where: { $0.label == "transaction" }),
- let swiftTxn = mirrorChild.value as? StoreKit.Transaction else {
- continue
- }
-
- let transactionId = "\(swiftTxn.id)"
- let date = NSNumber(value: swiftTxn.purchaseDate.timeIntervalSince1970)
-
- result.append([
- "transactionIdentifier": transactionId,
- "transactionState": "verified", // or skip this line
- "transactionDate": date
- ])
- }
-
- return result as NSArray
- }
-}
-#endif
diff --git a/Assets/AppsFlyer/Plugins/iOS/AFUnityStoreKit2Bridge.swift.meta b/Assets/AppsFlyer/Plugins/iOS/AFUnityStoreKit2Bridge.swift.meta
deleted file mode 100755
index f269096..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AFUnityStoreKit2Bridge.swift.meta
+++ /dev/null
@@ -1,42 +0,0 @@
-fileFormatVersion: 2
-guid: 5652805602a6b4273a6e527b00aea272
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- defineConstraints: []
- isPreloaded: 0
- isOverridable: 0
- isExplicitlyReferenced: 0
- validateReferences: 1
- platformData:
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- - first:
- VisionOS: VisionOS
- second:
- enabled: 1
- settings: {}
- - first:
- iPhone: iOS
- second:
- enabled: 1
- settings: {}
- - first:
- tvOS: tvOS
- second:
- enabled: 1
- settings: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.h b/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.h
deleted file mode 100755
index d3fec43..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.h
+++ /dev/null
@@ -1,24 +0,0 @@
-//
-// AFUnityUtils.h
-//
-// Created by Andrii H. and Dmitry O. on 16 Oct 2023
-//
-
-#if __has_include()
-#import
-#else
-#import "AppsFlyerLib.h"
-#endif
-
-static NSString* stringFromChar(const char *str);
-static NSDictionary* dictionaryFromJson(const char *jsonString);
-static const char* stringFromdictionary(NSDictionary* dictionary);
-static NSArray *NSArrayFromCArray(int length, const char **arr);
-static char* getCString(const char* string);
-static AppsFlyerLinkGenerator* generatorFromDictionary(NSDictionary* dictionary, AppsFlyerLinkGenerator* generator);
-static EmailCryptType emailCryptTypeFromInt(int emailCryptTypeInt);
-static AppsFlyerAdRevenueMediationNetworkType mediationNetworkTypeFromInt(int mediationNetwork);
-static NSNumber *intFromNullableBool(const char *cStr);
-static NSString* stringFromDeepLinkResultStatus(AFSDKDeepLinkResultStatus deepLinkResult);
-static NSString* stringFromDeepLinkResultError(AppsFlyerDeepLinkResult *result);
-
diff --git a/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.h.meta b/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.h.meta
deleted file mode 100755
index f6811a6..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.h.meta
+++ /dev/null
@@ -1,27 +0,0 @@
-fileFormatVersion: 2
-guid: 4b0609ff467554f2088aee1c52bf54a2
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- defineConstraints: []
- isPreloaded: 0
- isOverridable: 0
- isExplicitlyReferenced: 0
- validateReferences: 1
- platformData:
- - first:
- Any:
- second:
- enabled: 1
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.mm b/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.mm
deleted file mode 100755
index e2c0cf3..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.mm
+++ /dev/null
@@ -1,219 +0,0 @@
-//
-// AFUnityUtils.mm
-// Unity-iPhone
-//
-// Created by Jonathan Wesfield on 24/07/2019.
-//
-
-#import "AFUnityUtils.h"
-
-static NSString* stringFromChar(const char *str) {
- return str ? [NSString stringWithUTF8String:str] : nil;
-}
-
-static NSDictionary* dictionaryFromJson(const char *jsonString) {
- if(jsonString){
- NSData *jsonData = [[NSData alloc] initWithBytes:jsonString length:strlen(jsonString)];
- NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:jsonData options:kNilOptions error:nil];
- return dictionary;
- }
-
- return nil;
-}
-
-static const char* stringFromdictionary(NSDictionary* dictionary) {
- if(dictionary){
- NSError * err;
- NSData * jsonData = [NSJSONSerialization dataWithJSONObject:dictionary options:0 error:&err];
- NSString * myString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
- return [myString UTF8String];
- }
-
- return nil;
-}
-
-static NSDictionary* dictionaryFromNSError(NSError* error) {
- if(error){
- NSMutableDictionary *errorDictionary = [NSMutableDictionary dictionary];
- errorDictionary[@"code"] = @(error.code);
- errorDictionary[@"localizedDescription"] = error.localizedDescription ?: @"";
-
- // Include userInfo fields for enhanced error reporting (iOS SDK 6.17.8+)
- if (error.userInfo[@"error_code"]) {
- errorDictionary[@"error_code"] = error.userInfo[@"error_code"];
- }
- if (error.userInfo[@"error_message"]) {
- errorDictionary[@"error_message"] = error.userInfo[@"error_message"];
- }
- if (error.userInfo[@"invalid_fields"]) {
- errorDictionary[@"invalid_fields"] = error.userInfo[@"invalid_fields"];
- }
-
- return errorDictionary;
- }
-
- return nil;
-}
-
-
-static NSArray *NSArrayFromCArray(int length, const char **arr) {
- NSMutableArray *res = [[NSMutableArray alloc] init];
- for(int i = 0; i < length; i++) {
- if (arr[i]) {
- [res addObject:[NSString stringWithUTF8String:arr[i]]];
- }
- }
-
- return res;
-}
-
-static char* getCString(const char* string){
- if (string == NULL){
- return NULL;
- }
-
- char* res = (char*)malloc(strlen(string) + 1);
- strcpy(res, string);
-
- return res;
-}
-
-static AppsFlyerLinkGenerator* generatorFromDictionary(NSDictionary* dictionary, AppsFlyerLinkGenerator* generator) {
-
- NSArray* generatorKeys = @[@"channel", @"customerID", @"campaign", @"referrerName", @"referrerImageUrl", @"deeplinkPath", @"baseDeeplink", @"brandDomain"];
-
- NSMutableDictionary* mutableDictionary = [dictionary mutableCopy];
-
- [generator setChannel:[dictionary objectForKey: @"channel"]];
- [generator setReferrerCustomerId:[dictionary objectForKey: @"customerID"]];
- [generator setCampaign:[dictionary objectForKey: @"campaign"]];
- [generator setReferrerName:[dictionary objectForKey: @"referrerName"]];
- [generator setReferrerImageURL:[dictionary objectForKey: @"referrerImageUrl"]];
- [generator setDeeplinkPath:[dictionary objectForKey: @"deeplinkPath"]];
- [generator setBaseDeeplink:[dictionary objectForKey: @"baseDeeplink"]];
- [generator setBrandDomain:[dictionary objectForKey: @"brandDomain"]];
-
-
- [mutableDictionary removeObjectsForKeys:generatorKeys];
-
- [generator addParameters:mutableDictionary];
-
- return generator;
-}
-
-static EmailCryptType emailCryptTypeFromInt(int emailCryptTypeInt){
-
- EmailCryptType emailCryptType;
- switch (emailCryptTypeInt){
- case 1:
- emailCryptType = EmailCryptTypeSHA256;
- break;
- default:
- emailCryptType = EmailCryptTypeNone;
- break;
- }
-
- return emailCryptType;
-}
-
-static NSNumber *intFromNullableBool(const char *cStr) {
- if (!cStr) return nil;
- NSString *str = [NSString stringWithUTF8String:cStr];
-
- if ([str caseInsensitiveCompare:@"true"] == NSOrderedSame) {
- return @YES;
- } else if ([str caseInsensitiveCompare:@"false"] == NSOrderedSame) {
- return @NO;
- }
- return nil;
-}
-
-static AppsFlyerAdRevenueMediationNetworkType mediationNetworkTypeFromInt(int mediationNetworkInt){
-
- AppsFlyerAdRevenueMediationNetworkType mediationNetworkType;
- switch (mediationNetworkInt){
- case 1:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeGoogleAdMob;
- break;
- case 2:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeIronSource;
- break;
- case 3:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeApplovinMax;
- break;
- case 4:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeFyber;
- break;
- case 5:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeAppodeal;
- break;
- case 6:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeAdmost;
- break;
- case 7:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeTopon;
- break;
- case 8:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeTradplus;
- break;
- case 9:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeYandex;
- break;
- case 10:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeChartBoost;
- break;
- case 11:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeUnity;
- break;
- case 12:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeToponPte;
- break;
- case 13:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeCustom;
- break;
- case 14:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeDirectMonetization;
- break;
- default:
- mediationNetworkType = AppsFlyerAdRevenueMediationNetworkTypeCustom;
- break;
- }
-
- return mediationNetworkType;
-}
-
-static NSString* stringFromDeepLinkResultStatus(AFSDKDeepLinkResultStatus deepLinkResult){
- NSString* result;
- switch (deepLinkResult){
- case AFSDKDeepLinkResultStatusFound:
- result = @"FOUND";
- break;
- case AFSDKDeepLinkResultStatusFailure:
- result = @"ERROR";
- break;
- case AFSDKDeepLinkResultStatusNotFound:
- result = @"NOT_FOUND";
- break;
- default:
- result = @"ERROR";
- break;
- }
-
- return result;
-}
-
-static NSString* stringFromDeepLinkResultError(AppsFlyerDeepLinkResult *result){
- NSString* res;
-
- if (result && result.error){
- if ([[result.error userInfo][NSUnderlyingErrorKey] code] == -1001) {
- res = @"TIMEOUT";
- } else if ([[result.error userInfo][NSUnderlyingErrorKey] code] == -1009) {
- res = @"NETWORK";
- }
- }
-
- res = @"UNKNOWN";
-
- return res;
-}
diff --git a/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.mm.meta b/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.mm.meta
deleted file mode 100755
index b411375..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AFUnityUtils.mm.meta
+++ /dev/null
@@ -1,37 +0,0 @@
-fileFormatVersion: 2
-guid: 18a03931864e84d86bedcc99c440e060
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- defineConstraints: []
- isPreloaded: 0
- isOverridable: 0
- isExplicitlyReferenced: 0
- validateReferences: 1
- platformData:
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- - first:
- iPhone: iOS
- second:
- enabled: 1
- settings: {}
- - first:
- tvOS: tvOS
- second:
- enabled: 1
- settings: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyer+AppController.m b/Assets/AppsFlyer/Plugins/iOS/AppsFlyer+AppController.m
deleted file mode 100755
index f877576..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyer+AppController.m
+++ /dev/null
@@ -1,164 +0,0 @@
-//
-// AppsFlyer+AppController.m
-// Unity-iPhone
-//
-// Created by Jonathan Wesfield on 24/07/2019.
-//
-
-#import
-#import "UnityAppController.h"
-#import "AppsFlyeriOSWrapper.h"
-#if __has_include()
-#import
-#else
-#import "AppsFlyerLib.h"
-#endif
-
-
-@implementation UnityAppController (AppsFlyerSwizzledAppController)
-
-static BOOL didEnteredBackGround __unused;
-static IMP __original_applicationDidBecomeActive_Imp __unused;
-static IMP __original_applicationDidEnterBackground_Imp __unused;
-static IMP __original_didReceiveRemoteNotification_Imp __unused;
-static IMP __original_continueUserActivity_Imp __unused;
-static IMP __original_openUrl_Imp __unused;
-
-
-+ (void)load {
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
-
-#if !AFSDK_SHOULD_SWIZZLE
-
- id swizzleFlag = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"AppsFlyerShouldSwizzle"];
- BOOL shouldSwizzle = swizzleFlag ? [swizzleFlag boolValue] : NO;
-
- if(shouldSwizzle){
-
- Method method1 = class_getInstanceMethod([self class], @selector(applicationDidBecomeActive:));
- __original_applicationDidBecomeActive_Imp = method_setImplementation(method1, (IMP)__swizzled_applicationDidBecomeActive);
-
- Method method2 = class_getInstanceMethod([self class], @selector(applicationDidEnterBackground:));
- __original_applicationDidEnterBackground_Imp = method_setImplementation(method2, (IMP)__swizzled_applicationDidEnterBackground);
-
-
- Method method3 = class_getInstanceMethod([self class], @selector(didReceiveRemoteNotification:));
- __original_didReceiveRemoteNotification_Imp = method_setImplementation(method3, (IMP)__swizzled_didReceiveRemoteNotification);
-
-
- Method method4 = class_getInstanceMethod([self class], @selector(application:openURL:options:));
- __original_openUrl_Imp = method_setImplementation(method4, (IMP)__swizzled_openURL);
-
- if (_AppsFlyerdelegate == nil) {
- _AppsFlyerdelegate = [[AppsFlyeriOSWarpper alloc] init];
- }
-
- [self swizzleContinueUserActivity:[self class]];
- }
-#elif AFSDK_SHOULD_SWIZZLE
- Method method1 = class_getInstanceMethod([self class], @selector(applicationDidBecomeActive:));
- __original_applicationDidBecomeActive_Imp = method_setImplementation(method1, (IMP)__swizzled_applicationDidBecomeActive);
-
- Method method2 = class_getInstanceMethod([self class], @selector(applicationDidEnterBackground:));
- __original_applicationDidEnterBackground_Imp = method_setImplementation(method2, (IMP)__swizzled_applicationDidEnterBackground);
-
-
- Method method3 = class_getInstanceMethod([self class], @selector(didReceiveRemoteNotification:));
- __original_didReceiveRemoteNotification_Imp = method_setImplementation(method3, (IMP)__swizzled_didReceiveRemoteNotification);
-
-
- Method method4 = class_getInstanceMethod([self class], @selector(application:openURL:options:));
- __original_openUrl_Imp = method_setImplementation(method4, (IMP)__swizzled_openURL);
-
- if (_AppsFlyerdelegate == nil) {
- _AppsFlyerdelegate = [[AppsFlyeriOSWarpper alloc] init];
- }
-
- [self swizzleContinueUserActivity:[self class]];
-
-#endif
-
-
- });
-}
-
-+(void)swizzleContinueUserActivity:(Class)class {
-
- SEL originalSelector = @selector(application:continueUserActivity:restorationHandler:);
-
- Method defaultMethod = class_getInstanceMethod(class, originalSelector);
- Method swizzledMethod = class_getInstanceMethod(class, @selector(__swizzled_continueUserActivity));
-
- BOOL isMethodExists = !class_addMethod(class, originalSelector, method_getImplementation(swizzledMethod), method_getTypeEncoding(swizzledMethod));
-
- if (isMethodExists) {
- __original_continueUserActivity_Imp = method_setImplementation(defaultMethod, (IMP)__swizzled_continueUserActivity);
- } else {
- class_replaceMethod(class, originalSelector, (IMP)__swizzled_continueUserActivity, method_getTypeEncoding(swizzledMethod));
- }
-}
-
-BOOL __swizzled_continueUserActivity(id self, SEL _cmd, UIApplication* application, NSUserActivity* userActivity, void (^restorationHandler)(NSArray*)) {
- NSLog(@"swizzled continueUserActivity");
- [[AppsFlyerAttribution shared] continueUserActivity:userActivity restorationHandler:restorationHandler];
-
- if(__original_continueUserActivity_Imp){
- return ((BOOL(*)(id, SEL, UIApplication*, NSUserActivity*, void (^)(NSArray*)))__original_continueUserActivity_Imp)(self, _cmd, application, userActivity, NULL);
- }
-
- return YES;
-}
-
-
-
-void __swizzled_applicationDidBecomeActive(id self, SEL _cmd, UIApplication* launchOptions) {
- NSLog(@"swizzled applicationDidBecomeActive");
- [[AppsFlyerLib shared] setDelegate:_AppsFlyerdelegate];
-
- if(didEnteredBackGround && AppsFlyeriOSWarpper.didCallStart == YES){
- [[AppsFlyerLib shared] start];
- }
-
- if(__original_applicationDidBecomeActive_Imp){
- ((void(*)(id,SEL, UIApplication*))__original_applicationDidBecomeActive_Imp)(self, _cmd, launchOptions);
- }
-}
-
-
-void __swizzled_applicationDidEnterBackground(id self, SEL _cmd, UIApplication* application) {
- NSLog(@"swizzled applicationDidEnterBackground");
- didEnteredBackGround = YES;
- if(__original_applicationDidEnterBackground_Imp){
- ((void(*)(id,SEL, UIApplication*))__original_applicationDidEnterBackground_Imp)(self, _cmd, application);
- }
-}
-
-
-BOOL __swizzled_didReceiveRemoteNotification(id self, SEL _cmd, UIApplication* application, NSDictionary* userInfo,void (^UIBackgroundFetchResult)(void) ) {
- NSLog(@"swizzled didReceiveRemoteNotification");
-
- [[AppsFlyerLib shared] handlePushNotification:userInfo];
-
- if(__original_didReceiveRemoteNotification_Imp){
- return ((BOOL(*)(id, SEL, UIApplication*, NSDictionary*, int(UIBackgroundFetchResult)))__original_didReceiveRemoteNotification_Imp)(self, _cmd, application, userInfo, nil);
- }
- return YES;
-}
-
-
-
-BOOL __swizzled_openURL(id self, SEL _cmd, UIApplication* application, NSURL* url, NSDictionary * options) {
- NSLog(@"swizzled openURL");
- [[AppsFlyerAttribution shared] handleOpenUrl:url options:options];
- if(__original_openUrl_Imp){
- return ((BOOL(*)(id, SEL, UIApplication*, NSURL*, NSDictionary*))__original_openUrl_Imp)(self, _cmd, application, url, options);
- }
- return NO;
-}
-
-
-@end
-
-
-
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyer+AppController.m.meta b/Assets/AppsFlyer/Plugins/iOS/AppsFlyer+AppController.m.meta
deleted file mode 100755
index 24856fa..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyer+AppController.m.meta
+++ /dev/null
@@ -1,37 +0,0 @@
-fileFormatVersion: 2
-guid: 6ae9e1f7daef2427588fab2fbf8d35d5
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- defineConstraints: []
- isPreloaded: 0
- isOverridable: 0
- isExplicitlyReferenced: 0
- validateReferences: 1
- platformData:
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- - first:
- iPhone: iOS
- second:
- enabled: 1
- settings: {}
- - first:
- tvOS: tvOS
- second:
- enabled: 1
- settings: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAppController.mm b/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAppController.mm
deleted file mode 100755
index 3e492c0..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAppController.mm
+++ /dev/null
@@ -1,131 +0,0 @@
-//
-// AppsFlyerAppController.mm
-// Unity-iPhone
-//
-// Created by Jonathan Wesfield on 30/07/2019.
-//
-
-#import
-#import "UnityAppController.h"
-#import "AppDelegateListener.h"
-#import "AppsFlyeriOSWrapper.h"
-#if __has_include()
-#import
-#else
-#import "AppsFlyerLib.h"
-#endif
-#import
-
-/**
- Note if you would like to use method swizzeling see AppsFlyer+AppController.m
- If you are using swizzeling then comment out the method that is being swizzeled in AppsFlyerAppController.mm
- Only use swizzeling if there are conflicts with other plugins that needs to be resolved.
-*/
-
-
-@interface AppsFlyerAppController : UnityAppController
-{
- BOOL didEnteredBackGround;
-}
-@end
-
-@implementation AppsFlyerAppController
-
-- (instancetype)init
-{
- self = [super init];
- if (self) {
-
- id swizzleFlag = [[NSBundle mainBundle] objectForInfoDictionaryKey:@"AppsFlyerShouldSwizzle"];
- BOOL shouldSwizzle = swizzleFlag ? [swizzleFlag boolValue] : NO;
-
- if(!shouldSwizzle){
- UnityRegisterAppDelegateListener(self);
- }
- }
- return self;
-}
-
-- (void)didFinishLaunching:(NSNotification*)notification {
- NSLog(@"got didFinishLaunching = %@",notification.userInfo);
-
-
- if (_AppsFlyerdelegate == nil) {
- _AppsFlyerdelegate = [[AppsFlyeriOSWarpper alloc] init];
- }
- [[AppsFlyerLib shared] setDelegate:_AppsFlyerdelegate];
-
- if (notification.userInfo[@"url"]) {
- [self onOpenURL:notification];
- }
-}
-
--(void)didBecomeActive:(NSNotification*)notification {
- NSLog(@"got didBecomeActive(out) = %@", notification.userInfo);
- if (didEnteredBackGround == YES && AppsFlyeriOSWarpper.didCallStart == YES) {
- [[AppsFlyerLib shared] start];
- didEnteredBackGround = NO;
- }
-}
-
-- (void)didEnterBackground:(NSNotification*)notification {
- NSLog(@"got didEnterBackground = %@", notification.userInfo);
- didEnteredBackGround = YES;
-}
-
-- (BOOL)application:(UIApplication *)application continueUserActivity:(NSUserActivity *)userActivity restorationHandler:(void (^)(NSArray *))restorationHandler {
- [[AppsFlyerAttribution shared] continueUserActivity:userActivity restorationHandler:restorationHandler];
- return YES;
-}
-
-
-- (void)onOpenURL:(NSNotification*)notification {
- NSLog(@"got onOpenURL = %@", notification.userInfo);
- NSURL *url = notification.userInfo[@"url"];
- NSString *sourceApplication = notification.userInfo[@"sourceApplication"];
-
- if (sourceApplication == nil) {
- sourceApplication = @"";
- }
-
- if (url != nil) {
- [[AppsFlyerAttribution shared] handleOpenUrl:url sourceApplication:sourceApplication annotation:nil];
- }
-
-}
-
-- (void)didReceiveRemoteNotification:(NSNotification*)notification {
- NSLog(@"got didReceiveRemoteNotification = %@", notification.userInfo);
- [[AppsFlyerLib shared] handlePushNotification:notification.userInfo];
-}
-
-@end
-
-#if !(AFSDK_SHOULD_SWIZZLE)
-
-IMPL_APP_CONTROLLER_SUBCLASS(AppsFlyerAppController)
-
-#endif
-/**
-Note if you would not like to use IMPL_APP_CONTROLLER_SUBCLASS you can replace it with the code below.
-
- +(void)load
- {
- [AppsFlyerAppController plugin];
- }
-
- // Singleton accessor.
- + (AppsFlyerAppController *)plugin
- {
- static AppsFlyerAppController *sharedInstance = nil;
- static dispatch_once_t onceToken;
-
- dispatch_once(&onceToken, ^{
-
- sharedInstance = [[AppsFlyerAppController alloc] init];
- });
-
- return sharedInstance;
- }
-
- **/
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAppController.mm.meta b/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAppController.mm.meta
deleted file mode 100755
index 2e8e52c..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAppController.mm.meta
+++ /dev/null
@@ -1,37 +0,0 @@
-fileFormatVersion: 2
-guid: 2d1497a1493b24fecaa58bd3a7b707f9
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- defineConstraints: []
- isPreloaded: 0
- isOverridable: 0
- isExplicitlyReferenced: 0
- validateReferences: 1
- platformData:
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- - first:
- iPhone: iOS
- second:
- enabled: 1
- settings: {}
- - first:
- tvOS: tvOS
- second:
- enabled: 1
- settings: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.h b/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.h
deleted file mode 100755
index c79fec4..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.h
+++ /dev/null
@@ -1,34 +0,0 @@
-//
-// AppsFlyerAttribution.h
-// UnityFramework
-//
-// Created by Margot Guetta on 11/04/2021.
-//
-
-#ifndef AppsFlyerAttribution_h
-#define AppsFlyerAttribution_h
-#endif /* AppsFlyerAttribution_h */
-#if __has_include()
-#import
-#else
-#import "AppsFlyerLib.h"
-#endif
-
-
-@interface AppsFlyerAttribution : NSObject
-@property NSUserActivity*_Nullable userActivity;
-@property (nonatomic, copy) void (^ _Nullable restorationHandler)(NSArray *_Nullable );
-@property NSURL * _Nullable url;
-@property NSDictionary * _Nullable options;
-@property NSString* _Nullable sourceApplication;
-@property id _Nullable annotation;
-@property BOOL isBridgeReady;
-
-+ (AppsFlyerAttribution *_Nullable)shared;
-- (void) continueUserActivity: (NSUserActivity*_Nullable) userActivity restorationHandler: (void (^_Nullable)(NSArray * _Nullable))restorationHandler;
-- (void) handleOpenUrl:(NSURL*_Nullable)url options:(NSDictionary*_Nullable) options;
-- (void) handleOpenUrl: (NSURL *_Nonnull)url sourceApplication:(NSString*)sourceApplication annotation:(id)annotation;
-
-@end
-
-static NSString * _Nullable const AF_BRIDGE_SET = @"bridge is set";
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.h.meta b/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.h.meta
deleted file mode 100755
index 5b77c9b..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.h.meta
+++ /dev/null
@@ -1,27 +0,0 @@
-fileFormatVersion: 2
-guid: 8544dc3b3c7bb40d397b2de568df1058
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- defineConstraints: []
- isPreloaded: 0
- isOverridable: 0
- isExplicitlyReferenced: 0
- validateReferences: 1
- platformData:
- - first:
- Any:
- second:
- enabled: 1
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.m b/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.m
deleted file mode 100755
index c4e7278..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.m
+++ /dev/null
@@ -1,86 +0,0 @@
-//
-// NSObject+AppsFlyerAttribution.m
-// UnityFramework
-//
-// Created by Margot Guetta on 11/04/2021.
-//
-
-#import
-#import "AppsFlyerAttribution.h"
-
-@implementation AppsFlyerAttribution
-
-+ (id)shared {
- static AppsFlyerAttribution *shared = nil;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- shared = [[self alloc] init];
- });
- return shared;
-}
-
-- (id)init {
- if (self = [super init]) {
- self.options = nil;
- self.restorationHandler = nil;
- self.url = nil;
- self.userActivity = nil;
- self.annotation = nil;
- self.sourceApplication = nil;
- self.isBridgeReady = NO;
- [[NSNotificationCenter defaultCenter] addObserver:self
- selector:@selector(receiveBridgeReadyNotification:)
- name:AF_BRIDGE_SET
- object:nil];
- }
- return self;
-}
-
-- (void) continueUserActivity: (NSUserActivity*_Nullable) userActivity restorationHandler: (void (^_Nullable)(NSArray * _Nullable))restorationHandler{
- if(self.isBridgeReady == YES){
- [[AppsFlyerLib shared] continueUserActivity:userActivity restorationHandler:restorationHandler];
- }else{
- [AppsFlyerAttribution shared].userActivity = userActivity;
- [AppsFlyerAttribution shared].restorationHandler = restorationHandler;
- }
-}
-
-- (void) handleOpenUrl:(NSURL *)url options:(NSDictionary *)options{
- if(self.isBridgeReady == YES){
- [[AppsFlyerLib shared] handleOpenUrl:url options:options];
- }else{
- [AppsFlyerAttribution shared].url = url;
- [AppsFlyerAttribution shared].options = options;
- }
-}
-
-- (void) handleOpenUrl:(NSURL *)url sourceApplication:(NSString*)sourceApplication annotation:(id)annotation{
- if(self.isBridgeReady == YES){
- [[AppsFlyerLib shared] handleOpenURL:url sourceApplication:sourceApplication withAnnotation:annotation];
- }else{
- [AppsFlyerAttribution shared].url = url;
- [AppsFlyerAttribution shared].sourceApplication = sourceApplication;
- [AppsFlyerAttribution shared].annotation = annotation;
- }
-
-}
-
-- (void) receiveBridgeReadyNotification:(NSNotification *) notification
-{
- NSLog (@"AppsFlyer Debug: handle deep link");
- if(self.url && self.sourceApplication){
- [[AppsFlyerLib shared] handleOpenURL:self.url sourceApplication:self.sourceApplication withAnnotation:self.annotation];
- self.url = nil;
- self.sourceApplication = nil;
- self.annotation = nil;
- }else if(self.options && self.url){
- [[AppsFlyerLib shared] handleOpenUrl:self.url options:self.options];
- self.options = nil;
- self.url = nil;
- }else if(self.userActivity){
- [[AppsFlyerLib shared] continueUserActivity:self.userActivity restorationHandler:nil];
- self.userActivity = nil;
- self.restorationHandler = nil;
- }
-}
-@end
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.m.meta b/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.m.meta
deleted file mode 100755
index 9f071e6..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.m.meta
+++ /dev/null
@@ -1,37 +0,0 @@
-fileFormatVersion: 2
-guid: 1060e47d7b9e2453ba575f0b455b2bf8
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- defineConstraints: []
- isPreloaded: 0
- isOverridable: 0
- isExplicitlyReferenced: 0
- validateReferences: 1
- platformData:
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- - first:
- iPhone: iOS
- second:
- enabled: 1
- settings: {}
- - first:
- tvOS: tvOS
- second:
- enabled: 1
- settings: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.h b/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.h
deleted file mode 100755
index cf73afe..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.h
+++ /dev/null
@@ -1,71 +0,0 @@
-//
-// AppsFlyeriOSWarpper.h
-// Unity-iPhone
-//
-// Created by Jonathan Wesfield on 24/07/2019.
-//
-
-#import "AFUnityUtils.mm"
-#import "UnityAppController.h"
-#import "AppsFlyerAttribution.h"
-#if __has_include()
-#import
-#else
-#import "AppsFlyerLib.h"
-#endif
-#if __has_include()
-#import
-#else
-#import "PurchaseConnector.h"
-#endif
-#import
-
-// Add StoreKit 2 support
-#if __has_include()
-#import
-#endif
-
-@interface AppsFlyeriOSWarpper : NSObject
-
-+ (BOOL) didCallStart;
-+ (void) setDidCallStart:(BOOL)val;
-
-// Add StoreKit 2 methods
-- (void)setStoreKitVersion:(int)storeKitVersion;
-- (void)logConsumableTransaction:(id)transaction;
-
-@end
-
-
-static AppsFlyeriOSWarpper *_AppsFlyerdelegate;
-static const int kPushNotificationSize = 32;
-
-static NSString* ConversionDataCallbackObject = @"AppsFlyerObject";
-
-static const char* VALIDATE_CALLBACK = "didFinishValidateReceipt";
-static const char* VALIDATE_ERROR_CALLBACK = "didFinishValidateReceiptWithError";
-static const char* GCD_CALLBACK = "onConversionDataSuccess";
-static const char* GCD_ERROR_CALLBACK = "onConversionDataFail";
-static const char* OAOA_CALLBACK = "onAppOpenAttribution";
-static const char* OAOA_ERROR_CALLBACK = "onAppOpenAttributionFailure";
-static const char* GENERATE_LINK_CALLBACK = "onInviteLinkGenerated";
-static const char* OPEN_STORE_LINK_CALLBACK = "onOpenStoreLinkGenerated";
-static const char* START_REQUEST_CALLBACK = "requestResponseReceived";
-static const char* IN_APP_RESPONSE_CALLBACK = "inAppResponseReceived";
-static const char* ON_DEEPLINKING = "onDeepLinking";
-static const char* VALIDATE_AND_LOG_V2_CALLBACK = "onValidateAndLogComplete";
-static const char* VALIDATE_AND_LOG_V2_ERROR_CALLBACK = "onValidateAndLogFailure";
-
-
-static NSString* validateObjectName = @"";
-static NSString* openStoreObjectName = @"";
-static NSString* generateInviteObjectName = @"";
-static NSString* validateAndLogObjectName = @"";
-static NSString* startRequestObjectName = @"";
-static NSString* inAppRequestObjectName = @"";
-static NSString* onDeeplinkingObjectName = @"";
-
-static const char* PURCHASE_REVENUE_VALIDATION_CALLBACK = "didReceivePurchaseRevenueValidationInfo";
-static const char* PURCHASE_REVENUE_ERROR_CALLBACK = "didReceivePurchaseRevenueError";
-
-static NSString* onPurchaseValidationObjectName = @"";
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.h.meta b/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.h.meta
deleted file mode 100755
index 5284989..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.h.meta
+++ /dev/null
@@ -1,27 +0,0 @@
-fileFormatVersion: 2
-guid: 147104b04b5794eaa92b4195cc328e13
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- defineConstraints: []
- isPreloaded: 0
- isOverridable: 0
- isExplicitlyReferenced: 0
- validateReferences: 1
- platformData:
- - first:
- Any:
- second:
- enabled: 1
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm b/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm
deleted file mode 100755
index 34153d2..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm
+++ /dev/null
@@ -1,601 +0,0 @@
-//
-// AppsFlyeriOSWarpper.mm
-// Unity-iPhone
-//
-// Created by Jonathan Wesfield on 24/07/2019.
-//
-
-#import "AppsFlyeriOSWrapper.h"
-#import
-
-#import
-#import "UnityFramework/UnityFramework-Swift.h"
-
-#if __has_include()
-#import
-#elif __has_include("PurchaseConnector-Swift.h")
-#import "PurchaseConnector-Swift.h"
-#endif
-
-#if __has_include()
-#import
-#elif __has_include("UnityFramework-Swift.h")
-#import "UnityFramework-Swift.h"
-#endif
-
-static void unityCallBack(NSString* objectName, const char* method, const char* msg) {
- if(objectName){
- UnitySendMessage([objectName UTF8String], method, msg);
- }
-}
-
-extern "C" {
-
- const void _startSDK(bool shouldCallback, const char* objectName) {
- [[AppsFlyerLib shared] setPluginInfoWith: AFSDKPluginUnity
- pluginVersion:@"6.17.91"
- additionalParams:nil];
- startRequestObjectName = stringFromChar(objectName);
- AppsFlyeriOSWarpper.didCallStart = YES;
- [AppsFlyerAttribution shared].isBridgeReady = YES;
- [[NSNotificationCenter defaultCenter] postNotificationName:AF_BRIDGE_SET object: [AppsFlyerAttribution shared]];
- [[AppsFlyerLib shared] startWithCompletionHandler:^(NSDictionary *dictionary, NSError *error) {
- if(shouldCallback){
- if (error) {
- NSDictionary *callbackDictionary = @{@"statusCode":[NSNumber numberWithLong:[error code]]};
- unityCallBack(startRequestObjectName, START_REQUEST_CALLBACK, stringFromdictionary(callbackDictionary));
- return;
- }
- if (dictionary) {
- unityCallBack(startRequestObjectName, START_REQUEST_CALLBACK, stringFromdictionary(dictionary));
- return;
- }
- }
- }];
- }
-
- const void _setCustomerUserID (const char* customerUserID) {
- [[AppsFlyerLib shared] setCustomerUserID:stringFromChar(customerUserID)];
- }
-
- const void _setAdditionalData (const char* customData) {
- [[AppsFlyerLib shared] setAdditionalData:dictionaryFromJson(customData)];
- }
-
- const void _setAppsFlyerDevKey (const char* appsFlyerDevKey) {
- [AppsFlyerLib shared].appsFlyerDevKey = stringFromChar(appsFlyerDevKey);
- }
-
- const void _setAppleAppID (const char* appleAppID) {
- [AppsFlyerLib shared].appleAppID = stringFromChar(appleAppID);
- }
-
- const void _setCurrencyCode (const char* currencyCode) {
- [[AppsFlyerLib shared] setCurrencyCode:stringFromChar(currencyCode)];
- }
-
- const void _setDisableCollectAppleAdSupport (bool disableAdvertisingIdentifier) {
- [AppsFlyerLib shared].disableAdvertisingIdentifier = disableAdvertisingIdentifier;
- }
-
- const void _setIsDebug (bool isDebug) {
- [AppsFlyerLib shared].isDebug = isDebug;
- }
-
- const void _setShouldCollectDeviceName (bool shouldCollectDeviceName) {
- [AppsFlyerLib shared].shouldCollectDeviceName = shouldCollectDeviceName;
- }
-
- const void _setAppInviteOneLinkID (const char* appInviteOneLinkID) {
- [[AppsFlyerLib shared] setAppInviteOneLink:stringFromChar(appInviteOneLinkID)];
- }
-
- const void _setDeepLinkTimeout (long deepLinkTimeout) {
- [AppsFlyerLib shared].deepLinkTimeout = deepLinkTimeout;
- }
-
- const void _anonymizeUser (bool anonymizeUser) {
- [AppsFlyerLib shared].anonymizeUser = anonymizeUser;
- }
-
- const void _enableTCFDataCollection (bool shouldCollectTcfData) {
- [[AppsFlyerLib shared] enableTCFDataCollection:shouldCollectTcfData];
- }
-
- const void _setConsentData(const char* isUserSubjectToGDPR, const char* hasConsentForDataUsage, const char* hasConsentForAdsPersonalization, const char* hasConsentForAdStorage) {
-
- NSNumber *gdpr = intFromNullableBool(isUserSubjectToGDPR);
- NSNumber *dataUsage = intFromNullableBool(hasConsentForDataUsage);
- NSNumber *adsPersonalization = intFromNullableBool(hasConsentForAdsPersonalization);
- NSNumber *adStorage = intFromNullableBool(hasConsentForAdStorage);
-
- AppsFlyerConsent *consentData = [[AppsFlyerConsent alloc] initWithIsUserSubjectToGDPR:gdpr
- hasConsentForDataUsage:dataUsage
- hasConsentForAdsPersonalization:adsPersonalization
- hasConsentForAdStorage:adStorage];
-
- [[AppsFlyerLib shared] setConsentData:consentData];
- }
-
- const void _logAdRevenue(const char* monetizationNetwork, int mediationNetworkInt, const char* currencyIso4217Code, double eventRevenue, const char* additionalParameters) {
- AppsFlyerAdRevenueMediationNetworkType mediationNetwork = mediationNetworkTypeFromInt(mediationNetworkInt);
- NSNumber *number = [NSNumber numberWithDouble:eventRevenue];
- AFAdRevenueData *adRevenue = [[AFAdRevenueData alloc] initWithMonetizationNetwork:stringFromChar(monetizationNetwork) mediationNetwork:mediationNetwork currencyIso4217Code:stringFromChar(currencyIso4217Code) eventRevenue:number];
- [[AppsFlyerLib shared] logAdRevenue: adRevenue additionalParameters:dictionaryFromJson(additionalParameters)];
- }
-
- const void _setDisableCollectIAd (bool disableCollectASA) {
- [AppsFlyerLib shared].disableCollectASA = disableCollectASA;
- }
-
- const void _setUseReceiptValidationSandbox (bool useReceiptValidationSandbox) {
- [AppsFlyerLib shared].useReceiptValidationSandbox = useReceiptValidationSandbox;
- }
-
- const void _setUseUninstallSandbox (bool useUninstallSandbox) {
- [AppsFlyerLib shared].useUninstallSandbox = useUninstallSandbox;
- }
-
- const void _setResolveDeepLinkURLs (int length, const char **resolveDeepLinkURLs) {
- if(length > 0 && resolveDeepLinkURLs) {
- [[AppsFlyerLib shared] setResolveDeepLinkURLs:NSArrayFromCArray(length, resolveDeepLinkURLs)];
- }
- }
-
- const void _setOneLinkCustomDomains (int length, const char **oneLinkCustomDomains) {
- if(length > 0 && oneLinkCustomDomains) {
- [[AppsFlyerLib shared] setOneLinkCustomDomains:NSArrayFromCArray(length, oneLinkCustomDomains)];
- }
- }
-
- const void _afSendEvent (const char* eventName, const char* eventValues, bool shouldCallback, const char* objectName) {
- inAppRequestObjectName = stringFromChar(objectName);
- [[AppsFlyerLib shared] logEventWithEventName:stringFromChar(eventName) eventValues:dictionaryFromJson(eventValues) completionHandler:^(NSDictionary *dictionary, NSError *error) {
- if(shouldCallback){
- if (error) {
- NSDictionary *callbackDictionary = @{@"statusCode":[NSNumber numberWithLong:[error code]]};
- unityCallBack(inAppRequestObjectName, IN_APP_RESPONSE_CALLBACK, stringFromdictionary(callbackDictionary));
- return;
- }
- if (dictionary) {
- unityCallBack(inAppRequestObjectName, IN_APP_RESPONSE_CALLBACK, stringFromdictionary(dictionary));
- return;
- }
- }
- }];
- }
-
- const void _recordLocation (double longitude, double latitude) {
- [[AppsFlyerLib shared] logLocation:longitude latitude:latitude];
- }
-
- const char* _getAppsFlyerId () {
- return getCString([[[AppsFlyerLib shared] getAppsFlyerUID] UTF8String]);
- }
-
- const void _registerUninstall (unsigned char* deviceToken) {
- if(deviceToken){
- NSData* tokenData = [NSData dataWithBytes:(const void *)deviceToken length:sizeof(unsigned char)*kPushNotificationSize];
- [[AppsFlyerLib shared] registerUninstall:tokenData];
- }
- }
-
- const void _handlePushNotification (const char* pushPayload) {
- [[AppsFlyerLib shared] handlePushNotification:dictionaryFromJson(pushPayload)];
- }
-
- const char* _getSDKVersion () {
- return getCString([[[AppsFlyerLib shared] getSDKVersion] UTF8String]);
- }
-
- const void _setHost (const char* host, const char* hostPrefix) {
- [[AppsFlyerLib shared] setHost:stringFromChar(host) withHostPrefix:stringFromChar(hostPrefix)];
- }
-
- const void _setMinTimeBetweenSessions (int minTimeBetweenSessions) {
- [AppsFlyerLib shared].minTimeBetweenSessions = minTimeBetweenSessions;
- }
-
- const void _stopSDK (bool isStopped) {
- [AppsFlyerLib shared].isStopped = isStopped;
- }
-
- const BOOL _isSDKStopped () {
- return [AppsFlyerLib shared].isStopped;
- }
-
- const void _handleOpenUrl(const char *url, const char *sourceApplication, const char *annotation) {
- [[AppsFlyerLib shared] handleOpenURL:[NSURL URLWithString:stringFromChar(url)] sourceApplication:stringFromChar(sourceApplication) withAnnotation:stringFromChar(annotation)]; }
-
- const void _recordCrossPromoteImpression (const char* appID, const char* campaign, const char* parameters) {
- [AppsFlyerCrossPromotionHelper logCrossPromoteImpression:stringFromChar(appID) campaign:stringFromChar(campaign) parameters:dictionaryFromJson(parameters)]; }
-
- const void _attributeAndOpenStore (const char* appID, const char* campaign, const char* parameters, const char* objectName) {
-
- openStoreObjectName = stringFromChar(objectName);
-
- [AppsFlyerCrossPromotionHelper
- logAndOpenStore:stringFromChar(appID)
- campaign:stringFromChar(campaign)
- parameters:dictionaryFromJson(parameters)
- openStore:^(NSURLSession * _Nonnull urlSession, NSURL * _Nonnull clickURL) {
- unityCallBack(openStoreObjectName, OPEN_STORE_LINK_CALLBACK, [clickURL.absoluteString UTF8String]);
- }];
- }
-
- const void _generateUserInviteLink (const char* parameters, const char* objectName) {
-
- generateInviteObjectName = stringFromChar(objectName);
-
- [AppsFlyerShareInviteHelper generateInviteUrlWithLinkGenerator:^AppsFlyerLinkGenerator * _Nonnull(AppsFlyerLinkGenerator * _Nonnull generator) {
- return generatorFromDictionary(dictionaryFromJson(parameters), generator);
- } completionHandler:^(NSURL * _Nullable url) {
- unityCallBack(generateInviteObjectName, GENERATE_LINK_CALLBACK, [url.absoluteString UTF8String]);
- }];
- }
-
- const void _recordInvite (const char* channel, const char* parameters) {
- [AppsFlyerShareInviteHelper logInvite:stringFromChar(channel) parameters:dictionaryFromJson(parameters)];
- }
-
- const void _setUserEmails (int emailCryptTypeInt , int length, const char **userEmails) {
- if(length > 0 && userEmails) {
- [[AppsFlyerLib shared] setUserEmails:NSArrayFromCArray(length, userEmails) withCryptType:emailCryptTypeFromInt(emailCryptTypeInt)];
- }
- }
-
- const void _setPhoneNumber (const char* phoneNumber) {
- [[AppsFlyerLib shared] setPhoneNumber:stringFromChar(phoneNumber)];
- }
-
- const void _setSharingFilterForAllPartners () {
- [[AppsFlyerLib shared] setSharingFilterForAllPartners];
- }
-
- const void _setSharingFilter (int length, const char **partners) {
- if(length > 0 && partners) {
- [[AppsFlyerLib shared] setSharingFilter:NSArrayFromCArray(length, partners)];
- }
- }
-
- const void _setSharingFilterForPartners (int length, const char **partners) {
- if(length > 0 && partners) {
- [[AppsFlyerLib shared] setSharingFilterForPartners:NSArrayFromCArray(length, partners)];
- } else {
- [[AppsFlyerLib shared] setSharingFilterForPartners:nil];
- }
- }
-
- const void _validateAndSendInAppPurchase (const char* productIdentifier, const char* price, const char* currency, const char* transactionId, const char* additionalParameters, const char* objectName) {
-
- validateObjectName = stringFromChar(objectName);
-
- [[AppsFlyerLib shared]
- validateAndLogInAppPurchase:stringFromChar(productIdentifier)
- price:stringFromChar(price)
- currency:stringFromChar(currency)
- transactionId:stringFromChar(transactionId)
- additionalParameters:dictionaryFromJson(additionalParameters)
- success:^(NSDictionary *result){
- unityCallBack(validateObjectName, VALIDATE_CALLBACK, stringFromdictionary(result));
- } failure:^(NSError *error, id response) {
- if(response && [response isKindOfClass:[NSDictionary class]]) {
- NSDictionary* value = (NSDictionary*)response;
- unityCallBack(validateObjectName, VALIDATE_ERROR_CALLBACK, stringFromdictionary(value));
- } else {
- unityCallBack(validateObjectName, VALIDATE_ERROR_CALLBACK, error ? [[error localizedDescription] UTF8String] : "error");
- }
- }];
- }
-
- const void _validateAndSendInAppPurchaseV2 (const char* product, const char* transactionId, int purchaseType, const char* purchaseAdditionalDetails, const char* objectName) {
-
- validateAndLogObjectName = stringFromChar(objectName);
- AFSDKPurchaseDetails *details = [[AFSDKPurchaseDetails alloc] initWithProductId:stringFromChar(product) transactionId:stringFromChar(transactionId) purchaseType:(AFSDKPurchaseType)purchaseType];
-
- [[AppsFlyerLib shared]
- validateAndLogInAppPurchase:details
- purchaseAdditionalDetails:dictionaryFromJson(purchaseAdditionalDetails)
- completion:^(NSDictionary * _Nullable response, NSError * _Nullable error) {
- if (error) {
- unityCallBack(validateAndLogObjectName, VALIDATE_AND_LOG_V2_ERROR_CALLBACK, stringFromdictionary(dictionaryFromNSError(error)));
- } else {
- unityCallBack(validateAndLogObjectName, VALIDATE_AND_LOG_V2_CALLBACK, stringFromdictionary(response));
- }
- }];
-
- }
-
- const void _getConversionData(const char* objectName) {
- if (_AppsFlyerdelegate == nil) {
- _AppsFlyerdelegate = [[AppsFlyeriOSWarpper alloc] init];
- }
- ConversionDataCallbackObject = stringFromChar(objectName);
- [[AppsFlyerLib shared] setDelegate:_AppsFlyerdelegate];
- }
-
- const void _waitForATTUserAuthorizationWithTimeoutInterval (int timeoutInterval) {
- [[AppsFlyerLib shared] waitForATTUserAuthorizationWithTimeoutInterval:timeoutInterval];
- }
-
- const void _disableSKAdNetwork (bool isDisabled) {
- [AppsFlyerLib shared].disableSKAdNetwork = isDisabled;
- }
-
- const void _addPushNotificationDeepLinkPath (int length, const char **paths) {
- if(length > 0 && paths) {
- [[AppsFlyerLib shared] addPushNotificationDeepLinkPath:NSArrayFromCArray(length, paths)];
- }
- }
-
- const void _subscribeForDeepLink (const char* objectName) {
-
- onDeeplinkingObjectName = stringFromChar(objectName);
-
- if (_AppsFlyerdelegate == nil) {
- _AppsFlyerdelegate = [[AppsFlyeriOSWarpper alloc] init];
- }
- [[AppsFlyerLib shared] setDeepLinkDelegate:_AppsFlyerdelegate];
- }
-
- const void _setCurrentDeviceLanguage(const char* language) {
- [[AppsFlyerLib shared] setCurrentDeviceLanguage:stringFromChar(language)];
- }
-
- const void _setPartnerData(const char* partnerId, const char* partnerInfo) {
- [[AppsFlyerLib shared] setPartnerDataWithPartnerId: stringFromChar(partnerId) partnerInfo:dictionaryFromJson(partnerInfo)];
- }
-
- const void _disableIDFVCollection(bool isDisabled) {
- [AppsFlyerLib shared].disableIDFVCollection = isDisabled;
- }
-
- // Purchase connector
- const void _startObservingTransactions() {
- [[PurchaseConnector shared] startObservingTransactions];
- }
-
- const void _stopObservingTransactions() {
- [[PurchaseConnector shared] stopObservingTransactions];
- }
-
- const void _setIsSandbox(bool isSandBox) {
- [[PurchaseConnector shared] setIsSandbox:isSandBox];
- }
-
- const void _setPurchaseRevenueDelegate() {
- if (_AppsFlyerdelegate== nil) {
- _AppsFlyerdelegate = [[AppsFlyeriOSWarpper alloc] init];
- }
- [[PurchaseConnector shared] setPurchaseRevenueDelegate:_AppsFlyerdelegate];
- }
-
- const void _setAutoLogPurchaseRevenue(int option) {
- [[PurchaseConnector shared] setAutoLogPurchaseRevenue:option];
-
- }
-
- const void _initPurchaseConnector(const char* objectName) {
- if (_AppsFlyerdelegate == nil) {
- _AppsFlyerdelegate = [[AppsFlyeriOSWarpper alloc] init];
- }
- onPurchaseValidationObjectName = stringFromChar(objectName);
- }
-
- const void _setPurchaseRevenueDataSource(const char* objectName) {
- if (_AppsFlyerdelegate == nil) {
- _AppsFlyerdelegate = [[AppsFlyeriOSWarpper alloc] init];
- }
-
- if (strstr(objectName, "StoreKit2") != NULL) {
-
- // Force protocol conformance
- Protocol *sk2Protocol = @protocol(AppsFlyerPurchaseRevenueDataSourceStoreKit2);
- class_addProtocol([_AppsFlyerdelegate class], sk2Protocol);
-
- if (![_AppsFlyerdelegate conformsToProtocol:@protocol(AppsFlyerPurchaseRevenueDataSourceStoreKit2)]) {
- NSLog(@"[AppsFlyer] Warning: SK2 protocol not conformed!");
- }
- }
-
- [PurchaseConnector shared].purchaseRevenueDataSource = _AppsFlyerdelegate;
- }
-
- const void _setStoreKitVersion(int storeKitVersion) {
- [[PurchaseConnector shared] setStoreKitVersion:(AFSDKStoreKitVersion)storeKitVersion];
- }
-
- const void _logConsumableTransaction(const char* transactionId) {
- if (@available(iOS 15.0, *)) {
- NSString *transactionIdStr = [NSString stringWithUTF8String:transactionId];
- [AFUnityStoreKit2Bridge fetchAFSDKTransactionSK2WithTransactionId:transactionIdStr completion:^(AFSDKTransactionSK2 *afTransaction) {
- if (afTransaction) {
- [[PurchaseConnector shared] logConsumableTransaction:afTransaction];
- } else {
- NSLog(@"No AFSDKTransactionSK2 found for id %@", transactionIdStr);
- }
- }];
- }
- }
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- typedef const char *(*UnityPurchaseCallback)(const char *, const char *);
-
- UnityPurchaseCallback UnityPurchasesGetAdditionalParamsCallback = NULL;
- UnityPurchaseCallback UnityPurchasesGetAdditionalParamsCallbackSK2 = NULL;
-
- __attribute__((visibility("default")))
- void RegisterUnityPurchaseRevenueParamsCallback(UnityPurchaseCallback callback) {
- UnityPurchasesGetAdditionalParamsCallback = callback;
- }
-
- __attribute__((visibility("default")))
- void RegisterUnityPurchaseRevenueParamsCallbackSK2(UnityPurchaseCallback callback) {
- UnityPurchasesGetAdditionalParamsCallbackSK2 = callback;
- }
-
-
- #ifdef __cplusplus
- }
- #endif
-}
-
-@implementation AppsFlyeriOSWarpper
-
-static BOOL didCallStart;
-+ (BOOL) didCallStart
-{ @synchronized(self) { return didCallStart; } }
-+ (void) setDidCallStart:(BOOL)val
-{ @synchronized(self) { didCallStart = val; } }
-
-- (void)onConversionDataSuccess:(NSDictionary *)installData {
- unityCallBack(ConversionDataCallbackObject, GCD_CALLBACK, stringFromdictionary(installData));
-}
-
-- (void)onConversionDataFail:(NSError *)error {
- unityCallBack(ConversionDataCallbackObject, GCD_ERROR_CALLBACK, [[error localizedDescription] UTF8String]);
-}
-
-- (void)onAppOpenAttribution:(NSDictionary *)attributionData {
- unityCallBack(ConversionDataCallbackObject, OAOA_CALLBACK, stringFromdictionary(attributionData));
-}
-
-- (void)onAppOpenAttributionFailure:(NSError *)error {
- unityCallBack(ConversionDataCallbackObject, OAOA_ERROR_CALLBACK, [[error localizedDescription] UTF8String]);
-}
-
-- (void)didResolveDeepLink:(AppsFlyerDeepLinkResult *)result{
-
- NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
-
- [dict setValue:stringFromDeepLinkResultError(result) forKey:@"error"];
- [dict setValue:stringFromDeepLinkResultStatus(result.status) forKey:@"status"];
-
- if(result && result.deepLink){
- [dict setValue:result.deepLink.description forKey:@"deepLink"];
- [dict setValue:@(result.deepLink.isDeferred) forKey:@"is_deferred"];
- }
-
- unityCallBack(onDeeplinkingObjectName, ON_DEEPLINKING, stringFromdictionary(dict));
-}
-
-// Purchase Connector
-- (void)didReceivePurchaseRevenueValidationInfo:(NSDictionary *)validationInfo error:(NSError *)error {
- if (error != nil) {
- unityCallBack(onPurchaseValidationObjectName, PURCHASE_REVENUE_ERROR_CALLBACK, [[error localizedDescription] UTF8String]);
- } else {
- unityCallBack(onPurchaseValidationObjectName, PURCHASE_REVENUE_VALIDATION_CALLBACK, stringFromdictionary(validationInfo));
- }
-}
-
-- (NSDictionary *)purchaseRevenueAdditionalParametersForProducts:(NSSet *)products
- transactions:(NSSet *)transactions {
-
- NSMutableArray *productsArray = [NSMutableArray array];
- for (SKProduct *product in products) {
- [productsArray addObject:@{
- @"productIdentifier": product.productIdentifier ?: @"",
- @"localizedTitle": product.localizedTitle ?: @"",
- @"localizedDescription": product.localizedDescription ?: @"",
- @"price": [product.price stringValue] ?: @""
- }];
- }
-
- NSMutableArray *transactionsArray = [NSMutableArray array];
- for (SKPaymentTransaction *txn in transactions) {
- [transactionsArray addObject:@{
- @"transactionIdentifier": txn.transactionIdentifier ?: @"",
- @"transactionState": @(txn.transactionState),
- @"transactionDate": txn.transactionDate ? [@(txn.transactionDate.timeIntervalSince1970) stringValue] : @""
- }];
- }
-
- NSDictionary *input = @{
- @"products": productsArray,
- @"transactions": transactionsArray
- };
-
- NSError *error = nil;
- NSData *jsonData = [NSJSONSerialization dataWithJSONObject:input options:0 error:&error];
- if (error || !jsonData) {
- NSLog(@"[AppsFlyer] Failed to serialize Unity purchase data: %@", error);
- return @{};
- }
-
- NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
- if (!jsonString || !UnityPurchasesGetAdditionalParamsCallback) {
- NSLog(@"[AppsFlyer] Unity callback not registered");
- return @{};
- }
-
- const char *resultCStr = UnityPurchasesGetAdditionalParamsCallback([jsonString UTF8String], "");
- if (!resultCStr) {
- NSLog(@"[AppsFlyer] Unity callback returned null");
- return @{};
- }
-
- NSString *resultJson = [NSString stringWithUTF8String:resultCStr];
- NSData *resultData = [resultJson dataUsingEncoding:NSUTF8StringEncoding];
- NSDictionary *parsedResult = [NSJSONSerialization JSONObjectWithData:resultData options:0 error:&error];
-
- if (error || ![parsedResult isKindOfClass:[NSDictionary class]]) {
- NSLog(@"[AppsFlyer] Failed to parse Unity response: %@", error);
- return @{};
- }
-
- return parsedResult;
-}
-
-#pragma mark - AppsFlyerPurchaseRevenueDataSourceStoreKit2
-- (NSDictionary *)purchaseRevenueAdditionalParametersStoreKit2ForProducts:(NSSet *)products transactions:(NSSet *)transactions {
- if (@available(iOS 15.0, *)) {
- NSArray *productInfoArray = [AFUnityStoreKit2Bridge extractSK2ProductInfo:[products allObjects]];
- NSArray *transactionInfoArray = [AFUnityStoreKit2Bridge extractSK2TransactionInfo:[transactions allObjects]];
-
- NSDictionary *input = @{
- @"products": productInfoArray,
- @"transactions": transactionInfoArray
- };
-
- if (UnityPurchasesGetAdditionalParamsCallbackSK2) {
- NSError *error = nil;
- NSData *jsonData = [NSJSONSerialization dataWithJSONObject:input options:0 error:&error];
- if (error || !jsonData) {
- NSLog(@"[AppsFlyer] Failed to serialize Unity purchase data: %@", error);
- return @{};
- }
-
- NSString *jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
-
- const char *resultCStr = UnityPurchasesGetAdditionalParamsCallbackSK2([jsonString UTF8String], "");
- if (!resultCStr) {
- NSLog(@"[AppsFlyer] Unity callback returned null");
- return @{};
- }
-
- NSString *resultJson = [NSString stringWithUTF8String:resultCStr];
-
- NSData *resultData = [resultJson dataUsingEncoding:NSUTF8StringEncoding];
- NSDictionary *parsedResult = [NSJSONSerialization JSONObjectWithData:resultData options:0 error:&error];
-
- if (error || ![parsedResult isKindOfClass:[NSDictionary class]]) {
- NSLog(@"[AppsFlyer] Failed to parse Unity response: %@", error);
- return @{};
- }
-
- return parsedResult;
- } else {
- NSLog(@"[AppsFlyer] SK2 - Unity callback is NOT registered");
- }
- } else {
- NSLog(@"[AppsFlyer] SK2 - iOS version not supported");
- }
- return @{};
-}
-
-@end
-
-
diff --git a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm.meta b/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm.meta
deleted file mode 100755
index 3799161..0000000
--- a/Assets/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm.meta
+++ /dev/null
@@ -1,37 +0,0 @@
-fileFormatVersion: 2
-guid: 2bff3788f3d8747fe9679bd3818e1d76
-PluginImporter:
- externalObjects: {}
- serializedVersion: 2
- iconMap: {}
- executionOrder: {}
- defineConstraints: []
- isPreloaded: 0
- isOverridable: 0
- isExplicitlyReferenced: 0
- validateReferences: 1
- platformData:
- - first:
- Any:
- second:
- enabled: 0
- settings: {}
- - first:
- Editor: Editor
- second:
- enabled: 0
- settings:
- DefaultValueInitialized: true
- - first:
- iPhone: iOS
- second:
- enabled: 1
- settings: {}
- - first:
- tvOS: tvOS
- second:
- enabled: 1
- settings: {}
- userData:
- assetBundleName:
- assetBundleVariant:
diff --git a/Assets/OPS/Obfuscator/Log/iOS.txt b/Assets/OPS/Obfuscator/Log/iOS.txt
index 9594881..2bf84fb 100644
--- a/Assets/OPS/Obfuscator/Log/iOS.txt
+++ b/Assets/OPS/Obfuscator/Log/iOS.txt
@@ -648,9 +648,27 @@
[Debug][OPS.OBF][OnAnalyse_Component_Scenes] Found mono script reference in serialized properties for TwistNode (1):
- DontConfuse.TwistNode
-[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found 72 Prefabs.
-[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found 4125 Components in the prefabs.
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found 92 Prefabs.
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found 4461 Components in the prefabs.
[Info][OPS.OBF][OnAnalyse_Component_Prefabs] Process component Analyse Unity Event Component
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_money of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in jb of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in jb of type UnityEngine.ParticleSystem
@@ -735,6 +753,14 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in LEADERBOARD of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in LEADERBOARD of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in LEADERBOARD of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in LEADERBOARD of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Button
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_lose of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_lose of type UnityEngine.MeshFilter
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_lose of type UnityEngine.MeshRenderer
@@ -751,6 +777,32 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in lizi03 of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in lizi03 of type UnityEngine.ParticleSystem
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in lizi03 of type UnityEngine.ParticleSystemRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in FULL_BANNER of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in FULL_BANNER of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in FULL_BANNER of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in FULL_BANNER of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_1 of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_1 of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_1 of type SGame.PanelLogic
@@ -1013,6 +1065,81 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in light of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in light of type UnityEngine.ParticleSystem
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in light of type UnityEngine.ParticleSystemRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Canvas of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Canvas of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Canvas of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Canvas of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Btns_1 of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Btns_1 of type UnityEngine.UI.HorizontalLayoutGroup
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_video (1):
+ - ShowReward
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_inter (1):
+ - ShowInter
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_splash (1):
+ - ShowSplash
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Btns_2 of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Btns_2 of type UnityEngine.UI.HorizontalLayoutGroup
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_video (1):
+ - CheckReward
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_inter (1):
+ - CheckInter
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_splash (1):
+ - CheckSplash
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in EventSystem of type UnityEngine.Transform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in EventSystem of type UnityEngine.EventSystems.EventSystem
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in EventSystem of type UnityEngine.EventSystems.StandaloneInputModule
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Demo of type UnityEngine.Transform
+[Warning][OPS.OBF][OnAnalyse_Component_Prefabs] Failed to process current iterated Component at index 468 with Exception: System.NullReferenceException: Object reference not set to an instance of an object
+ at OPS.Obfuscator.Editor.Project.PreBuild.Pipeline.Component.AnalyseUnityEventComponent.OnAnalyse_Component (UnityEngine.Component _Component) [0x00005] in :0
+ at OPS.Obfuscator.Editor.Project.PreBuild.Pipeline.PreBuildPipeline.Process_Component_Analyse_And_Manipulate (System.Collections.Generic.List`1[T] _ComponentList) [0x00086] in :0
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DataPrivacyButton of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DataPrivacyButton of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DataPrivacyButton of type UnityEngine.UI.Image
@@ -1033,6 +1160,25 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_first_reward of type UnityEngine.MeshFilter
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_first_reward of type UnityEngine.MeshRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_first_reward of type Spine.Unity.SkeletonAnimation
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in ConsentForm of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in ConsentForm of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in ConsentForm of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in ConsentForm of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.LayoutElement
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_signin of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_signin of type UnityEngine.MeshFilter
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_signin of type UnityEngine.MeshRenderer
@@ -1068,6 +1214,25 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in EventSystem of type UnityEngine.EventSystems.EventSystem
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in EventSystem of type UnityEngine.EventSystems.StandaloneInputModule
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in EventSystem of type AppLovinMax.Scripts.MaxEventSystemChecker
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in ADAPTIVE of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in ADAPTIVE of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in ADAPTIVE of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in ADAPTIVE of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in BANNER of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in BANNER of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in BANNER of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in BANNER of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Button
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_rewards_enter of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_rewards_enter of type UnityEngine.ParticleSystem
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_rewards_enter of type UnityEngine.ParticleSystemRenderer
@@ -1097,6 +1262,24 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_win_light of type UnityEngine.MeshFilter
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_win_light of type UnityEngine.MeshRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_win_light of type Spine.Unity.SkeletonAnimation
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_savepot_icon of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_savepot_icon of type UnityEngine.MeshFilter
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_savepot_icon of type UnityEngine.MeshRenderer
@@ -1340,6 +1523,17 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in star of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in star of type UnityEngine.ParticleSystem
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in star of type UnityEngine.ParticleSystemRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in SMART_BANNER of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in SMART_BANNER of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in SMART_BANNER of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in SMART_BANNER of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_31 of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_31 of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_31 of type UnityEngine.UI.Image
@@ -1564,6 +1758,18 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in CENTER of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in CENTER of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in CENTER of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in CENTER of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Demo of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in BannerTop of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in BannerTop of type UnityEngine.Canvas
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in BannerTop of type UnityEngine.UI.CanvasScaler
@@ -2311,6 +2517,14 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in LARGE_BANNER of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in LARGE_BANNER of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in LARGE_BANNER of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in LARGE_BANNER of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Button
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in gamwin of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in gamwin of type UnityEngine.MeshFilter
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in gamwin of type UnityEngine.MeshRenderer
@@ -3412,12 +3626,85 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.UI.Text
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Reporter of type UnityEngine.Transform
-[Warning][OPS.OBF][OnAnalyse_Component_Prefabs] Failed to process current iterated Component at index 2761 with Exception: System.NullReferenceException: Object reference not set to an instance of an object
+[Warning][OPS.OBF][OnAnalyse_Component_Prefabs] Failed to process current iterated Component at index 2955 with Exception: System.NullReferenceException: Object reference not set to an instance of an object
at OPS.Obfuscator.Editor.Project.PreBuild.Pipeline.Component.AnalyseUnityEventComponent.OnAnalyse_Component (UnityEngine.Component _Component) [0x00005] in :0
at OPS.Obfuscator.Editor.Project.PreBuild.Pipeline.PreBuildPipeline.Process_Component_Analyse_And_Manipulate (System.Collections.Generic.List`1[T] _ComponentList) [0x00086] in :0
-[Warning][OPS.OBF][OnAnalyse_Component_Prefabs] Failed to process current iterated Component at index 2762 with Exception: System.NullReferenceException: Object reference not set to an instance of an object
+[Warning][OPS.OBF][OnAnalyse_Component_Prefabs] Failed to process current iterated Component at index 2956 with Exception: System.NullReferenceException: Object reference not set to an instance of an object
at OPS.Obfuscator.Editor.Project.PreBuild.Pipeline.Component.AnalyseUnityEventComponent.OnAnalyse_Component (UnityEngine.Component _Component) [0x00005] in :0
at OPS.Obfuscator.Editor.Project.PreBuild.Pipeline.PreBuildPipeline.Process_Component_Analyse_And_Manipulate (System.Collections.Generic.List`1[T] _ComponentList) [0x00086] in :0
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Canvas of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Canvas of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Canvas of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Canvas of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Btns_1 of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Btns_1 of type UnityEngine.UI.HorizontalLayoutGroup
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_video (1):
+ - ShowReward
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_inter (1):
+ - ShowInter
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_splash (1):
+ - ShowSplash
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Btns_2 of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Btns_2 of type UnityEngine.UI.HorizontalLayoutGroup
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_video of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_video (1):
+ - CheckReward
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_inter of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_inter (1):
+ - CheckInter
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button_splash of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found unity event methods in Button_splash (1):
+ - CheckSplash
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text (Legacy) of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in EventSystem of type UnityEngine.Transform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in EventSystem of type UnityEngine.EventSystems.EventSystem
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in EventSystem of type UnityEngine.EventSystems.StandaloneInputModule
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Demo of type UnityEngine.Transform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Demo of type MYp0ZVTT2QSDKDemo
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in PanelHole of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in PanelHole of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in PanelHole of type UnityEngine.UI.Image
@@ -3605,6 +3892,14 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in MEDIUM_RECTANGLE of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in MEDIUM_RECTANGLE of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in MEDIUM_RECTANGLE of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in MEDIUM_RECTANGLE of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Image of type UnityEngine.UI.Button
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in ItemNumShow of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in ItemNumShow of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in ItemNumShow of type UnityEngine.UI.Image
@@ -3984,6 +4279,27 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Outline
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 1024x768 of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_17 of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_17 of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_17 of type SGame.PanelLogic
@@ -4142,6 +4458,24 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_4 of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_4 of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in panel_4 of type SGame.PanelLogic
@@ -4303,6 +4637,45 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in red_dot of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in red_dot of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in red_dot of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.UI.CanvasScaler
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in 768x1024 of type UnityEngine.UI.GraphicRaycaster
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Background of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Ad of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Button of type UnityEngine.UI.Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.RectTransform
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.CanvasRenderer
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Text of type UnityEngine.UI.Text
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_title of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_title of type UnityEngine.MeshFilter
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_title of type UnityEngine.MeshRenderer
@@ -4776,11 +5149,44 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.RectTransform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.CanvasRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in DebugText of type UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in Demo of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_three_gift of type UnityEngine.Transform
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_three_gift of type UnityEngine.MeshFilter
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_three_gift of type UnityEngine.MeshRenderer
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Find unity event methods in fx_three_gift of type Spine.Unity.SkeletonAnimation
[Info][OPS.OBF][OnAnalyse_Component_Prefabs] Process component Analyse MonoScript
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 1024x768
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 1024x768
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference SGame.PanelLogic for panel_411
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for panel_411 (1):
- SGame.PanelLogic
@@ -4893,10 +5299,74 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
- UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for LEADERBOARD
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for LEADERBOARD (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for LEADERBOARD
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for LEADERBOARD (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Button
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_lose
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_lose (1):
- Spine.Unity.SkeletonAnimation
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for FULL_BANNER
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for FULL_BANNER (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for FULL_BANNER
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for FULL_BANNER (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 768x1024
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 768x1024
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference SGame.PanelLogic for panel_1
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for panel_1 (1):
- SGame.PanelLogic
@@ -5205,6 +5675,106 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_hand_pre (1):
- Spine.Unity.SkeletonAnimation
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Canvas (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Canvas (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.HorizontalLayoutGroup for Btns_1
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Btns_1 (1):
+ - UnityEngine.UI.HorizontalLayoutGroup
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_video
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_video
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_inter
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_inter
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_splash
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_splash
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.HorizontalLayoutGroup for Btns_2
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Btns_2 (1):
+ - UnityEngine.UI.HorizontalLayoutGroup
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_video
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_video
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_inter
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_inter
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_splash
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_splash
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.EventSystems.EventSystem for EventSystem
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for EventSystem (1):
+ - UnityEngine.EventSystems.EventSystem
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.EventSystems.StandaloneInputModule for EventSystem
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for EventSystem (1):
+ - UnityEngine.EventSystems.StandaloneInputModule
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] System.ArgumentException: Object at index 0 is null
+ at (wrapper managed-to-native) UnityEditor.SerializedObject.InternalCreate(UnityEngine.Object[],UnityEngine.Object)
+ at UnityEditor.SerializedObject..ctor (UnityEngine.Object obj) [0x00008] in /Users/bokken/build/output/unity/unity/Editor/Mono/SerializedObject.bindings.cs:22
+ at OPS.Obfuscator.Editor.Serialization.Unity.Helper.SerializedPropertyHelper.SearchVariablesWithSerializedObject (UnityEngine.Object _Object) [0x00006] in :0
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for DataPrivacyButton
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for DataPrivacyButton (1):
- UnityEngine.UI.Image
@@ -5233,6 +5803,42 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_first_reward (1):
- Spine.Unity.SkeletonAnimation
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for ConsentForm
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for ConsentForm (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for ConsentForm
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for ConsentForm (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.LayoutElement for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.LayoutElement
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_signin
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_signin (1):
- Spine.Unity.SkeletonAnimation
@@ -5293,6 +5899,42 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for EventSystem (1):
- AppLovinMax.Scripts.MaxEventSystemChecker
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for ADAPTIVE
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for ADAPTIVE (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for ADAPTIVE
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for ADAPTIVE (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for BANNER
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for BANNER (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for BANNER
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for BANNER (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Button
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_win
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_win (1):
- Spine.Unity.SkeletonAnimation
@@ -5301,6 +5943,38 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_win_light (1):
- Spine.Unity.SkeletonAnimation
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 1024x768
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 1024x768
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_savepot_icon
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_savepot_icon (1):
- Spine.Unity.SkeletonAnimation
@@ -5601,6 +6275,26 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for DebugText (1):
- UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for SMART_BANNER
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for SMART_BANNER (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for SMART_BANNER
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for SMART_BANNER (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for panel_31
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for panel_31 (1):
- UnityEngine.UI.Image
@@ -5901,6 +6595,26 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for DebugText (1):
- UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for CENTER
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for CENTER (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for CENTER
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for CENTER (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for BannerTop
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for BannerTop (1):
- UnityEngine.UI.CanvasScaler
@@ -6961,6 +7675,22 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for DebugText (1):
- UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for LARGE_BANNER
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for LARGE_BANNER (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for LARGE_BANNER
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for LARGE_BANNER (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Button
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for gamwin
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for gamwin (1):
- Spine.Unity.SkeletonAnimation
@@ -8325,6 +9055,106 @@
at (wrapper managed-to-native) UnityEditor.SerializedObject.InternalCreate(UnityEngine.Object[],UnityEngine.Object)
at UnityEditor.SerializedObject..ctor (UnityEngine.Object obj) [0x00008] in /Users/bokken/build/output/unity/unity/Editor/Mono/SerializedObject.bindings.cs:22
at OPS.Obfuscator.Editor.Serialization.Unity.Helper.SerializedPropertyHelper.SearchVariablesWithSerializedObject (UnityEngine.Object _Object) [0x00006] in :0
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Canvas (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for Canvas
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Canvas (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.HorizontalLayoutGroup for Btns_1
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Btns_1 (1):
+ - UnityEngine.UI.HorizontalLayoutGroup
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_video
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_video
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_inter
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_inter
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_splash
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_splash
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.HorizontalLayoutGroup for Btns_2
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Btns_2 (1):
+ - UnityEngine.UI.HorizontalLayoutGroup
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_video
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_video
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_video (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_inter
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_inter
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_inter (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button_splash
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button_splash
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button_splash (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text (Legacy)
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (Legacy) (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.EventSystems.EventSystem for EventSystem
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for EventSystem (1):
+ - UnityEngine.EventSystems.EventSystem
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.EventSystems.StandaloneInputModule for EventSystem
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for EventSystem (1):
+ - UnityEngine.EventSystems.StandaloneInputModule
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference MYp0ZVTT2QSDKDemo for Demo
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Demo (1):
+ - MYp0ZVTT2QSDKDemo
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for PanelHole
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for PanelHole (1):
- UnityEngine.UI.Image
@@ -8557,6 +9387,22 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for DebugText (1):
- UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for MEDIUM_RECTANGLE
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for MEDIUM_RECTANGLE (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for MEDIUM_RECTANGLE
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for MEDIUM_RECTANGLE (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Image (1):
+ - UnityEngine.UI.Button
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for ItemNumShow
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for ItemNumShow (1):
- UnityEngine.UI.Image
@@ -9033,6 +9879,42 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
- UnityEngine.UI.Outline
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 1024x768
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 1024x768
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 1024x768 (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference SGame.PanelLogic for panel_17
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for panel_17 (1):
- SGame.PanelLogic
@@ -9229,6 +10111,38 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for DebugText (1):
- UnityEngine.UI.Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 768x1024
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 768x1024
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference SGame.PanelLogic for panel_4
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for panel_4 (1):
- SGame.PanelLogic
@@ -9429,6 +10343,74 @@
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for red_dot (1):
- UnityEngine.UI.Image
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 768x1024
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 768x1024
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.CanvasScaler for 768x1024
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1):
+ - UnityEngine.UI.CanvasScaler
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.GraphicRaycaster for 768x1024
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for 768x1024 (1):
+ - UnityEngine.UI.GraphicRaycaster
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Background
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Background (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Ad
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Ad (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Image for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Image
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Button for Button
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Button (1):
+ - UnityEngine.UI.Button
+
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference UnityEngine.UI.Text for Text
+[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for Text (1):
+ - UnityEngine.UI.Text
+
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference Spine.Unity.SkeletonAnimation for fx_title
[Debug][OPS.OBF][OnAnalyse_Component_Prefabs] Found mono script reference in serialized properties for fx_title (1):
- Spine.Unity.SkeletonAnimation
@@ -10110,67 +11092,81 @@
[Debug][OPS.OBF][Setup] Load Pipeline
[Warning][OPS.OBF][Setup] There is no assembly: Assembly-CSharp-firstpass.dll
-[Debug][OPS.OBF][Setup] Found to obfuscate assemblies (7):
- - /Users/mac/WorkSpace/ScrewsMaster/Temp/StagingArea/Data/Managed/Assembly-CSharp.dll
- - /Users/mac/WorkSpace/ScrewsMaster/Temp/StagingArea/Data/Managed/spine-unity.dll
- - /Users/mac/WorkSpace/ScrewsMaster/Temp/StagingArea/Data/Managed/MaxSdk.Scripts.dll
- - /Users/mac/WorkSpace/ScrewsMaster/Temp/StagingArea/Data/Managed/AppsFlyer.dll
- - /Users/mac/WorkSpace/ScrewsMaster/Temp/StagingArea/Data/Managed/DOTween.Modules.dll
- - /Users/mac/WorkSpace/ScrewsMaster/Temp/StagingArea/Data/Managed/DOTweenPro.Scripts.dll
- - /Users/mac/WorkSpace/ScrewsMaster/Temp/StagingArea/Data/Managed/Unity.Advertisement.IosSupport.dll
+[Debug][OPS.OBF][Setup] Found to obfuscate assemblies (15):
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/Assembly-CSharp.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/spine-unity.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/BigoAds.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/MaxSdk.Scripts.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/AppsFlyer.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/Unity.Advertisement.IosSupport.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/KwaiAds.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/SDKConfig.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/DOTween.Modules.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/Unity.Notifications.iOS.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/DOTweenPro.Scripts.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/VosacoSDK.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/Unity.Notifications.Unified.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/WebView.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/MYp0ZVTT2QSDK.dll
[Debug][OPS.OBF][Setup] Found helper assemblies (1):
- - /Users/mac/WorkSpace/ScrewsMaster/Temp/StagingArea/Data/Managed/OPS.Obfuscator.dll
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/OPS.Obfuscator.dll
-[Debug][OPS.OBF][Setup] Found dependency directories (48):
- - /Applications/Unity/Hub/Editor/2022.3.16f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos
- - /Applications/Unity/Hub/Editor/2022.3.16f1/Unity.app/Contents/Managed/UnityEngine
- - /Applications/Unity/Hub/Editor/2022.3.16f1/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos/Facades
- - /Applications/Unity/Hub/Editor/2022.3.16f1/Unity.app/Contents/Managed
- - /Applications/Unity/Hub/Editor/2022.3.16f1/PlaybackEngines/WebGLSupport
- - /Applications/Unity/Hub/Editor/2022.3.16f1/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport
- - /Applications/Unity/Hub/Editor/2022.3.16f1/PlaybackEngines/AndroidPlayer
- - /Applications/Unity/Hub/Editor/2022.3.16f1/PlaybackEngines/iOSSupport
- - /Users/mac/WorkSpace/ScrewsMaster/Library/ScriptAssemblies
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/CrazyZoo/Plugins/Demigiant/DemiLib/Core/Editor
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/CrazyZoo/Plugins/Uni-Excel/Plugins
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/ExternalDependencyManager/Editor/1.2.182
- - /Users/mac/WorkSpace/ScrewsMaster/Library/PackageCache/com.unity.visualscripting@1.9.4/Editor/VisualScripting.Core/Dependencies/YamlDotNet
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/ExternalDependencyManager/Editor
- - /Users/mac/WorkSpace/ScrewsMaster/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/CrazyZoo/Plugins/SharpZipLib
- - /Users/mac/WorkSpace/ScrewsMaster/Library/PackageCache/com.unity.analytics@3.8.1
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/OPS/Editor/Plugins/Mono.Cecil
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/CrazyZoo/Plugins/ConsolePro/Editor
- - /Users/mac/WorkSpace/ScrewsMaster/Library/PackageCache/com.unity.collab-proxy@2.4.4/Lib/Editor/PlasticSCM
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/CrazyZoo/Plugins/Demigiant/DemiLib/Core
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/AppsFlyer/Tests
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/CrazyZoo/Plugins/Demigiant/DOTween/Editor
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/OPS/Obfuscator/Editor/Plugins
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/CrazyZoo/Plugins/Demigiant/DOTweenPro/Editor
- - /Users/mac/WorkSpace/ScrewsMaster/Library/PackageCache/com.unity.visualscripting@1.9.4/Editor/VisualScripting.Core/Dependencies/DotNetZip
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/OPS/Editor/Plugins/OPS.Assets.Editor
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/CrazyZoo/Plugins/Demigiant/DOTween
- - /Users/mac/WorkSpace/ScrewsMaster/Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Dependencies/NCalc
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/CrazyZoo/Plugins/Demigiant/DOTweenPro
- - /Users/mac/WorkSpace/ScrewsMaster/Library/PackageCache/com.unity.ide.rider@3.0.31/Rider/Editor
- - /Users/mac/WorkSpace/ScrewsMaster/Assets/OPS/Plugins/Json
- - /Users/mac/WorkSpace/ScrewsMaster/Library/PackageCache/com.unity.nuget.newtonsoft-json@3.2.1/Runtime
- - /Users/mac/WorkSpace/ScrewsMaster/Library/PackageCache/com.unity.visualscripting@1.9.4/Editor/VisualScripting.Core/EditorAssetResources
- - /Users/mac/WorkSpace/ScrewsMaster/Library/PackageCache/com.unity.analytics@3.8.1/AnalyticsStandardEvents
- - /Applications/Unity/Hub/Editor/2022.3.16f1/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed
+[Debug][OPS.OBF][Setup] Found dependency directories (54):
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/Unity.app/Contents/Managed/UnityEngine
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/Unity.app/Contents/MonoBleedingEdge/lib/mono/unityjit-macos/Facades
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/Unity.app/Contents/Managed
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/Unity.app/Contents/PlaybackEngines/MacStandaloneSupport
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/PlaybackEngines/iOSSupport
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Library/ScriptAssemblies
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/Firebase/Plugins
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/CrazyZoo/Plugins/Demigiant/DemiLib/Core/Editor
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/CrazyZoo/Plugins/Uni-Excel/Plugins
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Library/PackageCache/com.unity.visualscripting@1.9.4/Editor/VisualScripting.Core/Dependencies/YamlDotNet
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/GoogleMobileAds
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Library/PackageCache/com.unity.ext.nunit@1.0.6/net35/unity-custom
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/CrazyZoo/Plugins/SharpZipLib
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Library/PackageCache/com.unity.analytics@3.8.1
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/OPS/Editor/Plugins/Mono.Cecil
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/CrazyZoo/Plugins/ConsolePro/Editor
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Library/PackageCache/com.unity.collab-proxy@2.7.1/Lib/Editor
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/CrazyZoo/Plugins/Demigiant/DemiLib/Core
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/AppsFlyer/Tests
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/CrazyZoo/Plugins/Demigiant/DOTween/Editor
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/Firebase/Editor
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/OPS/Obfuscator/Editor/Plugins
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/CrazyZoo/Plugins/Demigiant/DOTweenPro/Editor
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Library/PackageCache/com.unity.visualscripting@1.9.4/Editor/VisualScripting.Core/Dependencies/DotNetZip
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/OPS/Editor/Plugins/OPS.Assets.Editor
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/MYp0ZVTT2QSDK/Plugins
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/CrazyZoo/Plugins/Demigiant/DOTween
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Library/PackageCache/com.unity.visualscripting@1.9.4/Runtime/VisualScripting.Flow/Dependencies/NCalc
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/CrazyZoo/Plugins/Demigiant/DOTweenPro
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Library/PackageCache/com.unity.ide.rider@3.0.36/Rider/Editor
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/MYp0ZVTT2QSDK/Plugins/JsonNet
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/OPS/Plugins/Json
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Library/PackageCache/com.unity.visualscripting@1.9.4/Editor/VisualScripting.Core/EditorAssetResources
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Library/PackageCache/com.unity.analytics@3.8.1/AnalyticsStandardEvents
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/ExternalDependencyManager/Editor
+ - /Users/edy/git_/MergeGangRush_unity_IOS/Assets/ExternalDependencyManager/Editor/1.2.186
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/PlaybackEngines/iOSSupport/Variations/il2cpp/Managed
+ - Assets/Firebase/Plugins/iOS
+ - Assets/GoogleMobileAds
- Assets/CrazyZoo/Plugins/SharpZipLib
- Assets/CrazyZoo/Plugins/Demigiant/DemiLib/Core
- Assets/AppsFlyer/Tests
+ - Assets/Firebase/Plugins
+ - Assets/MYp0ZVTT2QSDK/Plugins
- Assets/CrazyZoo/Plugins/Demigiant/DOTween
- Assets/CrazyZoo/Plugins/Demigiant/DOTweenPro
+ - Assets/MYp0ZVTT2QSDK/Plugins/JsonNet
- Assets/OPS/Plugins/Json
- - /Users/mac/WorkSpace/ScrewsMaster/Library/PackageCache/com.unity.nuget.newtonsoft-json@3.2.1/Runtime/AOT
- - /Applications/Unity/Hub/Editor/2022.3.16f1/Unity.app/Contents/NetStandard/ref/2.1.0
- - /Applications/Unity/Hub/Editor/2022.3.16f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard
- - /Applications/Unity/Hub/Editor/2022.3.16f1/Unity.app/Contents/NetStandard/Extensions/2.0.0
- - /Applications/Unity/Hub/Editor/2022.3.16f1/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx
- - /Applications/Unity/Hub/Editor/2022.3.16f1/Unity.app/Managed
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/Unity.app/Contents/NetStandard/ref/2.1.0
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netstandard
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/Unity.app/Contents/NetStandard/Extensions/2.0.0
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/Unity.app/Contents/NetStandard/compat/2.1.0/shims/netfx
+ - /Applications/Unity/Hub/Editor/2022.3.62f2/Unity.app/Managed
[Debug][OPS.OBF][Setup] Load Assembly Resolver
[Info][OPS.OBF][Setup] Prepare Assemblies
@@ -10198,56 +11194,91 @@
[Info][OPS.OBF][Setup] Process component Not Obfuscate Cause
[Info][OPS.OBF][Setup] Process component Remove Obfuscator References
[Info][OPS.OBF][Setup] Load Assemblies
+[Warning][OPS.OBF][Setup] Could not load: /Users/edy/git_/MergeGangRush_unity_IOS/Temp/StagingArea/Data/Managed/OPS.Obfuscator.dll! Exception: OPS.Mono.Cecil.Cil.SymbolsNotMatchingException: Symbols were found but are not matching the assembly
+ at OPS.Mono.Cecil.ModuleDefinition.ReadSymbols (OPS.Mono.Cecil.Cil.ISymbolReader reader, System.Boolean throwIfSymbolsAreNotMaching) [0x00060] in D:\Tim\UnityAssets\Mono\OPS.Mono.Cecil\0.11.5\Mono.Cecil\ModuleDefinition.cs:1089
+ at OPS.Mono.Cecil.ModuleReader.ReadSymbols (OPS.Mono.Cecil.ModuleDefinition module, OPS.Mono.Cecil.ReaderParameters parameters) [0x00060] in D:\Tim\UnityAssets\Mono\OPS.Mono.Cecil\0.11.5\Mono.Cecil\AssemblyReader.cs:111
+ at OPS.Mono.Cecil.ModuleReader.CreateModule (OPS.Mono.Cecil.PE.Image image, OPS.Mono.Cecil.ReaderParameters parameters) [0x00081] in D:\Tim\UnityAssets\Mono\OPS.Mono.Cecil\0.11.5\Mono.Cecil\AssemblyReader.cs:82
+ at OPS.Mono.Cecil.ModuleDefinition.ReadModule (OPS.Mono.Disposable`1[T] stream, System.String fileName, OPS.Mono.Cecil.ReaderParameters parameters) [0x00006] in D:\Tim\UnityAssets\Mono\OPS.Mono.Cecil\0.11.5\Mono.Cecil\ModuleDefinition.cs:1141
+ at OPS.Mono.Cecil.ModuleDefinition.ReadModule (System.String fileName, OPS.Mono.Cecil.ReaderParameters parameters) [0x0006c] in D:\Tim\UnityAssets\Mono\OPS.Mono.Cecil\0.11.5\Mono.Cecil\ModuleDefinition.cs:1113
+ at OPS.Mono.Cecil.AssemblyDefinition.ReadAssembly (System.String fileName, OPS.Mono.Cecil.ReaderParameters parameters) [0x00000] in D:\Tim\UnityAssets\Mono\OPS.Mono.Cecil\0.11.5\Mono.Cecil\AssemblyDefinition.cs:132
+ at OPS.Obfuscator.Editor.Assembly.Mono.Helper.AssemblyHelper.LoadAssembly (System.String _AssemblyFilePath, OPS.Obfuscator.Editor.Assembly.AssemblyResolver _AssemblyResolver, UnityEditor.BuildTarget _BuildTarget) [0x00031] in :0
+ at OPS.Obfuscator.Editor.Project.PostAssemblyBuild.PostAssemblyBuildStep.LoadAssemblies () [0x000ba] in :0
[Debug][OPS.OBF][Setup] Load Cache
[Debug][OPS.OBF][Setup] Load RenameManager
[Warning][OPS.OBF][Setup] Failed to load Charset: . Using default! Exception: System.ArgumentException: Must specify valid information for parsing in the string.
- at System.Enum+EnumResult.SetFailure (System.Enum+ParseFailureKind failure, System.String failureMessageID, System.Object failureMessageFormatArgument) [0x00023] in :0
- at System.Enum.TryParseEnum (System.Type enumType, System.String value, System.Boolean ignoreCase, System.Enum+EnumResult& parseResult) [0x00077] in :0
- at System.Enum.Parse (System.Type enumType, System.String value, System.Boolean ignoreCase) [0x00010] in :0
- at System.Enum.Parse (System.Type enumType, System.String value) [0x00000] in :0
+ at System.Enum+EnumResult.SetFailure (System.Enum+ParseFailureKind failure, System.String failureMessageID, System.Object failureMessageFormatArgument) [0x00023] in :0
+ at System.Enum.TryParseEnum (System.Type enumType, System.String value, System.Boolean ignoreCase, System.Enum+EnumResult& parseResult) [0x00077] in :0
+ at System.Enum.Parse (System.Type enumType, System.String value, System.Boolean ignoreCase) [0x00010] in :0
+ at System.Enum.Parse (System.Type enumType, System.String value) [0x00000] in :0
at OPS.Obfuscator.Editor.Project.PostAssemblyBuild.Pipeline.Component.Optional.RenamingComponent.OnPrePipelineProcess (OPS.Editor.Project.Step.IStepInput _StepInput) [0x00027] in :0
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component Unity Animation Methods - Compatibility
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Skip StateMachineBehaviour Types...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Skip Animation Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Skip StateMachineBehaviour Types...
[Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Skip Animation Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Skip StateMachineBehaviour Types...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Skip Animation Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Skip StateMachineBehaviour Types...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Skip Animation Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Skip StateMachineBehaviour Types...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Skip Animation Methods...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip StateMachineBehaviour Types...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip Animation Methods...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip StateMachineBehaviour Types...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Animation Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Skip StateMachineBehaviour Types...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Skip Animation Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Skip StateMachineBehaviour Types...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Skip Animation Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Skip StateMachineBehaviour Types...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Skip Animation Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip StateMachineBehaviour Types...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip Animation Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Skip StateMachineBehaviour Types...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Skip Animation Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip StateMachineBehaviour Types...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Animation Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip StateMachineBehaviour Types...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip Animation Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Skip StateMachineBehaviour Types...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Skip Animation Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip StateMachineBehaviour Types...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Animation Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Skip StateMachineBehaviour Types...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Skip Animation Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component Unity Event Methods - Compatibility
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::ShowReward()] Because the method might be a gui method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::ShowInter()] Because the method might be a gui method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::ShowSplash()] Because the method might be a gui method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::CheckReward(UnityEngine.UI.Image)] Because the method might be a gui method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::CheckInter(UnityEngine.UI.Image)] Because the method might be a gui method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::CheckSplash(UnityEngine.UI.Image)] Because the method might be a gui method.
[Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Skip Gui Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Skip Gui Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Skip Gui Methods...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip Gui Methods...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Gui Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Skip Gui Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MYp0ZVTT2QSDK] System.Void MYp0ZVTT2QSDK.MYp0ZVTT2QSDK_ADCOMPONENT::ShowSplash(System.Action)] Because the method might be a gui method.
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component String Reflection and Coroutine - Compatibility
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Find Strings in Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Skip Member names based on found Strings...
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] AnimationCurveData] Because the type might be a type called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::ShowSplash()] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AndroidVibration::CVibrate(System.Int32)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AndroidVibration::CVibrateShort()] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AndroidVibration::CVibrateLong()] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] Roy.ObjectPool.ObjectPool`1] Because the type might be a type called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerPurchaseConnector] Because the type might be a type called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::init(UnityEngine.MonoBehaviour,AppsFlyerSDK.Store)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] ScrewsMaster.ObjectPool`1] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] ScrewsMaster.EngineEventSystem] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] ScrewsMaster.TimerHelper] Because the type might be a type called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Collections.IEnumerator ScrewsMaster.AppsFlyerObjectScript1::loopWaitInitAf()] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1::onConversionDataSuccess(System.String)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1::onConversionDataFail(System.String)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1::onAppOpenAttribution(System.String)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1::onAppOpenAttributionFailure(System.String)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit::LoadInterstitial()] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit::InitializeRewardedAds()] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit::LoadRewardedAd()] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] ScrewsMaster.Durationtasks] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] ScrewsMaster.exBrPool] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] ScrewsMaster.exBrPool_2] Because the type might be a type called through reflection.
@@ -10425,7 +11456,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] ScrewsMaster.TipsUICtrl] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] ScrewsMaster.PreferencesDataReadyCtrl] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.CrazyZooInfo::Unload(System.Boolean)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] ScrewsMaster.WebViewCtrl] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FairyGUI.Container] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FairyGUI.GoWrapper] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[Assembly-CSharp] FairyGUI.Image] Because the type might be a type called through reflection.
@@ -10612,31 +11642,59 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[spine-unity] System.Void Spine.Pool`1::Free(T)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[spine-unity] System.Void Spine.TextureLoader::Unload(System.Object)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[spine-unity] System.Void Spine.Unity.MaterialsTextureLoader::Unload(System.Object)] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Strings in Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::Show()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::Show()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Because the type might be a type called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::Show()] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find Strings in Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Skip Member names based on found Strings...
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::LoadInterstitial(System.String)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::LoadRewardedAd(System.String)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkiOS::LoadInterstitial(System.String)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkiOS::LoadRewardedAd(System.String)] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkLogger::E(System.String)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor] Because the type might be a type called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Find Strings in Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Skip Member names based on found Strings...
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[AppsFlyer] AppsFlyerObjectScript] Because the type might be a type called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[AppsFlyer] System.Void AppsFlyerObjectScript::onConversionDataSuccess(System.String)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[AppsFlyer] System.Void AppsFlyerObjectScript::onConversionDataFail(System.String)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[AppsFlyer] System.Void AppsFlyerObjectScript::onAppOpenAttribution(System.String)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[AppsFlyer] System.Void AppsFlyerObjectScript::onAppOpenAttributionFailure(System.String)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[AppsFlyer] AppsFlyerSDK.AppsFlyerRequestEventArgs AppsFlyerSDK.AppsFlyer::parseRequestCallback(System.String)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[AppsFlyer] System.Void AppsFlyerSDK.IAppsFlyerConversionData::onConversionDataSuccess(System.String)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[AppsFlyer] System.Void AppsFlyerSDK.IAppsFlyerConversionData::onConversionDataFail(System.String)] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Namespace [[AppsFlyer] AppsFlyerSDK.AppsFlyerPurchaseConnector] Because the type might be a type called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[AppsFlyer] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::init(UnityEngine.MonoBehaviour,AppsFlyerSDK.Store)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[AppsFlyer] System.Void AppsFlyerSDK.IAppsFlyerConversionData::onAppOpenAttribution(System.String)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[AppsFlyer] System.Void AppsFlyerSDK.IAppsFlyerConversionData::onAppOpenAttributionFailure(System.String)] Because the method might be a method called through reflection.
-[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Strings in Methods...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip Member names based on found Strings...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Find Strings in Methods...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Member names based on found Strings...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Find Strings in Methods...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find Strings in Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void KwaiInterAd::Show()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void KwaiVideoAd::Show()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[KwaiAds] System.Void KwaiAds.Scripts.Common.IKwaiAdController`3::Show()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find Strings in Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Strings in Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Find Strings in Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Find Strings in Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Strings in Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[VosacoSDK] System.Void AD.VosacoSDK.VosacoAdSDK::LogD(System.String)] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[VosacoSDK] System.Void AD.VosacoSDK.VosacoAdSDK::LogE(System.String)] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[VosacoSDK] System.Void AD.VosacoSDK.VosacoInterAd::Destroy()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[VosacoSDK] System.Void AD.VosacoSDK.VosacoInterAdListenerProxy::onClose()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[VosacoSDK] System.Void AD.VosacoSDK.VosacoRewardAd::Destroy()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Find Strings in Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Strings in Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[WebView] System.Int32 WebViewObject::Progress()] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Find Strings in Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Skip Member names based on found Strings...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MYp0ZVTT2QSDK] System.Void MYp0ZVTT2QSDK.AppsFlyerAdapter::onAppOpenAttributionFailure(System.String)] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MYp0ZVTT2QSDK] System.Void MYp0ZVTT2QSDK.AppsFlyerAdapter::onAppOpenAttribution(System.String)] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MYp0ZVTT2QSDK] System.Void MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper::ShowSplash(System.Action)] Because the method might be a method called through reflection.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MYp0ZVTT2QSDK] System.Void MYp0ZVTT2QSDK.MYp0ZVTT2QSDK_ADCOMPONENT::ShowSplash(System.Action)] Because the method might be a method called through reflection.
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component Namespace - Settings
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Find MemberReferences...
@@ -10645,10 +11703,9 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType0`8] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType1`11] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType2`3] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType3`2] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType4`2] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType5`2] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType6`2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] Microsoft.CodeAnalysis.EmbeddedAttribute] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] System.Runtime.CompilerServices.NullableAttribute] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] System.Runtime.CompilerServices.NullableContextAttribute] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ConsoleProDebug] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] CreatSheepCard] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppMsg] Analyse Type References in Custom Attribute References...
@@ -10685,12 +11742,33 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] CommonExpand] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FXPool`1] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MD5Kit] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] WebViewByHide/ThroughState] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] WebViewByHide] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] WebViewByJS] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SaveingPotClass] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SaveingPotTaskStatus] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SaveingPotHelper] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MYp0ZVTT2QSDKDemo/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MYp0ZVTT2QSDKDemo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] InAppPurchaseValidationResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ProductPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ValidationFailureData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SubscriptionValidationResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SubscriptionPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] CanceledStateContext] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ExternalAccountIdentifiers] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SubscriptionPurchaseLineItem] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PausedStateContext] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SubscribeWithGoogleInfo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] TestPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] DeveloperInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ReplacementCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SystemInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UserInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AutoRenewingPlan] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] DeferredItemReplacement] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] OfferDetails] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PrepaidPlan] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] CancelSurveyResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SubscriptionItemPriceChangeDetails] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] Money] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BrigdeIOS] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ItemEnum] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUIClickDetection] Analyse Type References in Custom Attribute References...
@@ -10712,10 +11790,9 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PanelHole] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PanelImage] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass22_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass28_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass30_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/d__29] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass21_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass23_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/d__22] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AndroidVibration] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] HapticManager] Analyse Type References in Custom Attribute References...
@@ -10758,8 +11835,20 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.BoxTypeLogic] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.PanelLogic] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.ScrewsLogic/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.ScrewsLogic/<>c__DisplayClass16_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.ScrewsLogic/<>c__DisplayClass17_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.ScrewsLogic] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.MediationNetwork] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.AdRevenueScheme] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.AFAdRevenueData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerPurchaseConnector] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.Store] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerAutoLogPurchaseRevenueOptions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.StoreKitVersion] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.IAppsFlyerPurchaseValidation] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FutureCore.Base64EncodeUtil] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.App/<>c] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.App] Analyse Type References in Custom Attribute References...
@@ -10874,9 +11963,10 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.FGUIHelper] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.ParticleUnscaledTime] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.PlayerPrefsKit] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.AppsFlyerObjectScript1/d__3] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.AppsFlyerObjectScript1] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.MaxADKit/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.MaxADKit/<>c__DisplayClass2_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.MaxADKit/<>c__DisplayClass7_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.MaxADKit] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.PlayerPrefsConst] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.AdTaskData] Analyse Type References in Custom Attribute References...
@@ -11063,6 +12153,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.GetTaskRewardUICtrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5Ctrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5Model] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5UI/<>c] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5UI/<>c__DisplayClass28_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5UI/<>c__DisplayClass37_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5UI/<>c__DisplayClass58_0] Analyse Type References in Custom Attribute References...
@@ -11315,27 +12406,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.AndroidPointEvent] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.BuriedPointEvent] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.QuestionBankKit] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebAutoRefreshUrl] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebviewConst] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5WebThroughType] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebUIType] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughScale] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughUtil] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMaskUtil] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughBase] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughFly] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughHide] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughOnline] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughPop] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewCtrl] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/UserType] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/WebType] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/GameUrlInfo] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c__DisplayClass36_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c__DisplayClass40_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c__DisplayClass59_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.SaveData] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.Saveobject] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebviewManager/<>c] Analyse Type References in Custom Attribute References...
@@ -11840,6 +12910,18 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUI.A000_common.head_loader] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Find Member to skip...
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] DontConfuse.TwistNode] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.MediationNetwork] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.AdRevenueScheme] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.AFAdRevenueData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerPurchaseConnector] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.Store] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerAutoLogPurchaseRevenueOptions] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.StoreKitVersion] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[Assembly-CSharp] AppsFlyerSDK.IAppsFlyerPurchaseValidation] Because of the type skipping settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] InitializeUnityServices/d__1] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] SerializeUtil/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] TextureHelper/<>c__DisplayClass10_0] Is a nested class and has no namespace.
@@ -11854,17 +12936,16 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] TextureHelper/d__6] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] RewardSystem/<>c__DisplayClass10_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] RewardSystem/<>c__DisplayClass10_1] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] WebViewByHide/ThroughState] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] MYp0ZVTT2QSDKDemo/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] MaxPayManager/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] MaxPayManager/<>c__DisplayClass16_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] MaxPayManager/<>c__DisplayClass25_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] MaxPayManager/<>c__DisplayClass25_1] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] MaxPayManager/d__22] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] PurchasingManager/<>c] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass22_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass28_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass30_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] PurchasingManager/d__29] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass21_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass23_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] PurchasingManager/d__22] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ShowScrews/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ShowScrews/<>c__DisplayClass112_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ShowScrews/<>c__DisplayClass122_0] Is a nested class and has no namespace.
@@ -11887,7 +12968,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] SGame.BoxTypeLogic/<>c__DisplayClass16_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] SGame.BoxTypeLogic/<>c__DisplayClass17_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] SGame.ScrewsLogic/<>c] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] SGame.ScrewsLogic/<>c__DisplayClass16_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] SGame.ScrewsLogic/<>c__DisplayClass17_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.App/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.AsyncDealData/DealMethod] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.BaseMainThreadDispatcher`3/MainThreadMsgClass] Is a nested class and has no namespace.
@@ -11912,8 +12993,9 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.NormalTimer/TimerMode] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.NormalTimer/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.Timer/<>c] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.AppsFlyerObjectScript1/d__3] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.MaxADKit/<>c] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.MaxADKit/<>c__DisplayClass2_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.MaxADKit/<>c__DisplayClass7_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.exBrPoolModel/<>c__DisplayClass6_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.exBrPoolModel_2/<>c__DisplayClass6_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.MakeupModel/<>c__DisplayClass4_0] Is a nested class and has no namespace.
@@ -11955,6 +13037,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.FXWndUI/<>c__DisplayClass7_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.GameHomeUI/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.GetTaskRewardUI/<>c__DisplayClass30_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.H5UI/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.H5UI/<>c__DisplayClass28_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.H5UI/<>c__DisplayClass37_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.H5UI/<>c__DisplayClass58_0] Is a nested class and has no namespace.
@@ -12056,13 +13139,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.NetworkKit/<>c__DisplayClass13_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.NetworkKit/<>c__DisplayClass14_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.NetworkKit/d__8`1] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.WebViewMgr/UserType] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.WebViewMgr/WebType] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.WebViewMgr/GameUrlInfo] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c__DisplayClass36_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c__DisplayClass40_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c__DisplayClass59_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.WebviewManager/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] ScrewsMaster.WebviewManager/<>c__DisplayClass21_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Assembly-CSharp] MiniJSON.Json/Parser/TOKEN] Is a nested class and has no namespace.
@@ -12405,6 +13481,148 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[spine-unity] Spine.Collections.OrderedDictionary`2/KeyCollection] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[spine-unity] Spine.Collections.OrderedDictionary`2/ValueCollection] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[spine-unity] Spine.Collections.OrderedDictionary`2/d__34] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper/Task] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper/DestryAdTask] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.IOSClientFactory] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityTools] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityinterstitialAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitypopupAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySplashAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IBannerAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IBigoAd`1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IClientBidding] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IClientFactory] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IInterstitialAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.INativeAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IPopupAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IRewardedAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.ISDK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.ISplashAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoBannerAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoBannerRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoNativeAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoNativeRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoPopupAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoPopupRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRewardedAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRewardedRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoSplashAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoSplashRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.IOSClientFactory] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityConfig] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityTools] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityinterstitialAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitypopupAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySplashAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IBannerAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IBigoAd`1] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IClientBidding] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IClientFactory] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IInterstitialAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.INativeAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IPopupAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.IRewardedAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.ISDK] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Common.ISplashAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/<>c] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoBannerAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoBannerRequest] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialRequest] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoNativeAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoNativeRequest] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoPopupAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoPopupRequest] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoRequest] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoRewardedAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoRewardedRequest] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoSplashAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.BigoSplashRequest] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] AdHelper/Task] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] AdHelper/DestryAdTask] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/<>c] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Type References in Module...
@@ -12415,12 +13633,11 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxEvents/AppLovin] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxEvents] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdk] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkAndroid/BackgroundCallbackProxy] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkAndroid] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/ConsentFlowUserGeography] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/AppTrackingStatus] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/InitializationStatus] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/AdViewPosition] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/BannerPosition] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/AdViewConfiguration] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/SdkConfiguration] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/Reward] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/ErrorCode] Analyse Type References in Custom Attribute References...
@@ -12433,24 +13650,24 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/MediatedNetworkInfo] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/ErrorInfo] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/SafeAreaInsets] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/BannerPosition] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/ConsentDialogState] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AdPositionExtenstion] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/Interstitial] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/AppOpen] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/Rewarded] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/RewardedInterstitial] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/Banner] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/MRec] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass155_0`1] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass156_0`2] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass157_0`3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass15_0`1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass16_0`2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass17_0`3] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkiOS/ALUnityBackgroundCallback] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkiOS] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkLogger] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkUtils/VersionComparisonResult] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkUtils/<>c__DisplayClass33_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkUtils/<>c__DisplayClass34_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkUtils] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSegmentCollection/MaxSegmentCollectionBuilder] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSegmentCollection] Analyse Type References in Custom Attribute References...
@@ -12464,14 +13681,25 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor/MaxAction] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor/<>c__DisplayClass6_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.WebRequestType] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.WebRequestConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.WebResponse] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c__DisplayClass5_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c__DisplayClass6_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/d__5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/d__8] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequestExtension/d__0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequestExtension] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find Member to skip...
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxCmpError/ErrorCode] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxEvents/AppLovin] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkAndroid/BackgroundCallbackProxy] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/ConsentFlowUserGeography] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/AppTrackingStatus] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/InitializationStatus] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/AdViewPosition] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/BannerPosition] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/AdViewConfiguration] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/SdkConfiguration] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/Reward] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/ErrorCode] Is a nested class and has no namespace.
@@ -12484,19 +13712,19 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/MediatedNetworkInfo] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/ErrorInfo] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/SafeAreaInsets] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/BannerPosition] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkBase/ConsentDialogState] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/Interstitial] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/AppOpen] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/Rewarded] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/RewardedInterstitial] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/Banner] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/MRec] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass155_0`1] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass156_0`2] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass157_0`3] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass15_0`1] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass16_0`2] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass17_0`3] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkiOS/ALUnityBackgroundCallback] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkUtils/VersionComparisonResult] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkUtils/<>c__DisplayClass33_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSdkUtils/<>c__DisplayClass34_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] MaxSegmentCollection/MaxSegmentCollectionBuilder] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] AppLovinMax.ThirdParty.MiniJson.Json/Parser/TOKEN] Is a nested class and has no namespace.
@@ -12504,16 +13732,55 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] AppLovinMax.ThirdParty.MiniJson.Json/Serializer] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor/MaxAction] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor/<>c__DisplayClass6_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c__DisplayClass5_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c__DisplayClass6_0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/d__5] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/d__8] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequestExtension/d__0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Analyse Type References in Module...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] Microsoft.CodeAnalysis.EmbeddedAttribute] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] System.Runtime.CompilerServices.NullableAttribute] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] System.Runtime.CompilerServices.NullableContextAttribute] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFInAppEvents] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerObjectScript] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] InAppPurchaseValidationResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] ProductPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] ValidationFailureData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SubscriptionValidationResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SubscriptionPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] CanceledStateContext] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] ExternalAccountIdentifiers] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SubscriptionPurchaseLineItem] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] PausedStateContext] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SubscribeWithGoogleInfo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] TestPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] DeveloperInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] ReplacementCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SystemInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] UserInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AutoRenewingPlan] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] DeferredItemReplacement] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] OfferDetails] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] PrepaidPlan] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] CancelSurveyResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SubscriptionItemPriceChangeDetails] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] Money] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Parser/TOKEN] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Parser] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Serializer] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.MediationNetwork] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AdRevenueScheme] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFAdRevenueData] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFPurchaseType] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFPurchaseDetailsAndroid] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseType] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseDetailsIOS] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogStatus] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogResult] Analyse Type References in Custom Attribute References...
@@ -12527,24 +13794,162 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.DeepLinkError] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AppsFlyeriOS/unityCallBack] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AppsFlyeriOS] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AppsFlyerPurchaseConnector] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.Store] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AppsFlyerAutoLogPurchaseRevenueOptions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.StoreKitVersion] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerAndroidBridge] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerConversionData] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerIOSBridge] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerNativeBridge] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseValidation] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerUserInvite] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateAndLog] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateReceipt] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Parser/TOKEN] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Parser] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Serializer] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.MediationNetwork] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AdRevenueScheme] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFAdRevenueData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFPurchaseType] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFPurchaseDetailsAndroid] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseType] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseDetailsIOS] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogStatus] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogResult] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyer] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyer/unityCallBack] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.EmailCryptType] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerConsent] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerRequestEventArgs] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.DeepLinkEventsArgs] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.DeepLinkStatus] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.DeepLinkError] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyeriOS] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyeriOS/unityCallBack] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerPurchaseConnector] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.Store] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerAutoLogPurchaseRevenueOptions] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.StoreKitVersion] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerAndroidBridge] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerConversionData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerIOSBridge] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerNativeBridge] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseValidation] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerUserInvite] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateAndLog] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateReceipt] Because of the type skipping settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] AppsFlyerSDK.AppsFlyer/unityCallBack] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] AppsFlyerSDK.AppsFlyeriOS/unityCallBack] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] AFMiniJSON.Json/Parser/TOKEN] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] AFMiniJSON.Json/Parser] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] AFMiniJSON.Json/Serializer] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] AppsFlyerSDK.AppsFlyer/unityCallBack] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[AppsFlyer] AppsFlyerSDK.AppsFlyeriOS/unityCallBack] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/RequestAuthorizationTrackingCompleteHandler] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/AuthorizationTrackingStatus] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.SkAdNetworkBinding] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/RequestAuthorizationTrackingCompleteHandler] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/AuthorizationTrackingStatus] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] IKwaiAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAdsMgr/InitResultCallbackImpl] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAdsMgr] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiLog] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd/InterstitialAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd/InterstitialAdLoadListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd/RewardAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd/RewardAdLoadListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IRwardAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IClientBidding] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IClientFactory] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IKwaiAdController`3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.ISDK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants/Request] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants/Currency] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.InitResultCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig/Builder] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdsSdk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdController] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdLoadListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.KwaiRewardAdRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdController] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdLoadListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.KwaiInterstitialAdRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.IAdListener] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.IRwardAdListener] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.IClientBidding] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.IClientFactory] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.IKwaiAdController`3] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Common.ISDK] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Constants] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Constants/Request] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Constants/Currency] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.InitResultCallback] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig/Builder] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdsSdk] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.KwaiRequest] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdController] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdListener] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdLoadListener] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Reward.KwaiRewardAdRequest] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdController] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdListener] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdLoadListener] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.KwaiInterstitialAdRequest] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAdsMgr/InitResultCallbackImpl] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiInterAd/InterstitialAdListener] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiInterAd/InterstitialAdLoadListener] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiVideoAd/RewardAdListener] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiVideoAd/RewardAdLoadListener] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Api.Constants/Request] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Api.Constants/Currency] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig/Builder] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] MYp0ZVTT2QSDK.SDKConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] MYp0ZVTT2QSDK.AssetUtils] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[SDKConfig] MYp0ZVTT2QSDK.SDKConfig] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[SDKConfig] MYp0ZVTT2QSDK.AssetUtils] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Type References in Module...
@@ -12721,6 +14126,61 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForPosition] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTween.Modules] DG.Tweening.DOTweenCYInstruction/WaitForStart] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils/Physics] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.AuthorizationOption] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSAuthorizationRequestData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.AuthorizationRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.PresentationOption] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.NotificationSoundType] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.NotificationInterruptionLevel] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.TimeTriggerData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.CalendarTriggerData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.LocationTriggerData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.TriggerData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotification] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationActionOptions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationActionIconType] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationAction] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSTextInputNotificationAction] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationAttachment] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCategoryOptions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCategory] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter/NotificationReceivedCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter/AuthorizationRequestCompletedCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.AuthorizationStatus] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.AlertStyle] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.ShowPreviewsSetting] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.NotificationSetting] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationSettings] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationWithUserInfo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/AuthorizationRequestCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/NotificationReceivedCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/ReceiveNSDictionaryKeyValueCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/ReceiveUNNotificationAttachmentCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationTriggerType] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationTrigger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationLocationTrigger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationPushTrigger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationTimeIntervalTrigger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCalendarTrigger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Notifications.iOS] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter/NotificationReceivedCallback] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter/AuthorizationRequestCompletedCallback] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter/<>c] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/AuthorizationRequestCallback] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/NotificationReceivedCallback] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/ReceiveNSDictionaryKeyValueCallback] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/ReceiveUNNotificationAttachmentCallback] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Analyse Type References in Module...
@@ -12789,20 +14249,787 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass43_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass44_0] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass46_0] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Member...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Find MemberReferences...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Type References in Module...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/RequestAuthorizationTrackingCompleteHandler] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/AuthorizationTrackingStatus] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.SkAdNetworkBinding] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Find Member to skip...
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/RequestAuthorizationTrackingCompleteHandler] Is a nested class and has no namespace.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/AuthorizationTrackingStatus] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.ISDKInitCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoAdSDK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoInterAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoInterAdListenerProxy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoRewardAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoRewardAdListenerProxy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.ISDKInitCallback] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoAdSDK] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoInterAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoInterAdListenerProxy] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoRewardAd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[VosacoSDK] AD.VosacoSDK.VosacoRewardAdListenerProxy] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.Notification] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationPresentation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationSettingsSection] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationCenterArgs] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationCenter/NotificationReceivedCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationCenter] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationRepeatInterval] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationSchedule] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationIntervalSchedule] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationDateTimeSchedule] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationsPermissionStatus] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationsPermissionRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Notifications.Unified] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[Unity.Notifications.Unified] Unity.Notifications.NotificationCenter/NotificationReceivedCallback] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] qvxnf1_T] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] Loom/5xz9zULT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] Loom/lo7NvgTj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] Loom/sK51KAZR] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] Loom] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] e74JB4vt] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] HYM9xtVX] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] jg1RtNaw/Si6unDL2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] jg1RtNaw] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] UnityTimer.Timer/TimerManager/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] UnityTimer.Timer/TimerManager] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] UnityTimer.Timer] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] UnityTimer.TimerExtensions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.88yWHJxM/vhq2E9WF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.88yWHJxM] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Ui_dcKdf/l3YqCl36] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Ui_dcKdf] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/1Bh_QWfG] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/W53H1ebW] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/7m9okZ4s] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.A8S4zLFC/H02czusj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.A8S4zLFC] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AppsFlyerAdapter] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.uCaqyStv] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9GApI_pW] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.zDNNN65j] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCGameObject] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCTxData/UYMnDcmK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCTxData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pw1Ws6hP] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.OQ7wQopp] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/9_BS5vmA] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/MND1HxcK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/Y8xpjO0w] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/GHaKNPZQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/_t4ZHNTl] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/uEEVdQKF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/V4OQ31L7] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/0ws2mYnZ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/41lDihCz] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/ccXXDkBQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/_zyXdppt] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/nxsCcUwH] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/pmMq_VhO] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/GTrHCHLU] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/tQSJp7MZ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/t5GXKTvA] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/bHWD42UG] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/8AT_1fh6] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/N3JIRQjs] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/o19a7d6J] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/nlo_ZP0I] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/3CV8qhkX] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/u8NrYgTF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/PJF2CfVe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/hFOgyH4e] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/34cLBkNm] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CrashlyticsTester] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7cRynXw2/0VxqqhpJ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7cRynXw2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.o1OH7WRr] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.hYQVe5o2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.3sthGmKI] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2jAJgNYQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData/3Nj94sbw] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData/3x5RRfZg] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.oOmERjt5/voocrGB3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.oOmERjt5/rcGAVdTg] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.oOmERjt5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/zRITH_jP] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/w4N4M_Xw] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/ofMam6rE] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BznmJmYa/cKnVbliE] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BznmJmYa/Ed5VmNRy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BznmJmYa] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.QXr1iL5O] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.qtqsmIXe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.GRxoNryi] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bFg5xd7W] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.KkkaDjL3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.e67xzOYb] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.vZTIIeQg/SJ5JF5Ur] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.vZTIIeQg] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.nO8n48Ss/NxuR9q8V] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.nO8n48Ss] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/9simCRPy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/KxzQ7ezQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/MAtg22bn] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/dvH5Zlaz] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/2xNWFuMe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mBts_wvM/oCezPJIj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mBts_wvM] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.g3GXId0k] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x0fCMBam/zL2TaWY9] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x0fCMBam] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XhUecnxQ/yDrHoQBZ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XhUecnxQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.cXUljZUf/izLkI0t3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.cXUljZUf] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ABConfigData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.VariableData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MpetvhxI] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ROg5OYuw] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ythF5mGN] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.uJAhKZKT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Mb4Ja5WV] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mhcUQlNj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YFAuWVBo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/RViF1eIQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/szvB20HO] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/NoINPiDq] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/mvHZsbRe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/Jbqgtvpy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/W7RbdPkT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/9QkfiOzI] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/ndHdmrlG] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2jjKIPTT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.PaymentTypeCode] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WithDrawConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WithDrawOrder] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.0i071bSb] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AdSourceData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AdTypeData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.6fXFIxpL] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.NjH2WXSD/IFZnh7lP] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.NjH2WXSD/IZhoRW4h] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.NjH2WXSD] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.jzCfuJbF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ydG6bXkW] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.PB9OnZ0A] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CVnMv7y4] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.p4_yafpP] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ZHsJgohg/aqJADNK1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ZHsJgohg] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/yf0w1Epm] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/N5_OfSuB] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/AYTXAKJC] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/5SuD1tpQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/4MQiUKky] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/LmTdIk8b] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/zB0YcEQV] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/lRnEE6Er] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XYJfEhoo/4j7ftM4n] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XYJfEhoo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YTYDQ1WT/zkW75Z1P] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YTYDQ1WT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Zo2ddxTn/LG9pscCB] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Zo2ddxTn] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pHQ3ZGsb/fWMNpoio] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pHQ3ZGsb/074XRt4p] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pHQ3ZGsb] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YuE61Qod] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.u5kvI8r4] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.T6zX5xuK/uwmEsF9f] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.T6zX5xuK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AvU2nYHk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.KXn4RF19/OzVG1Zsz] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.KXn4RF19] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/SDK_H5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDK_ADCOMPONENT/dqAJHaMt] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDK_ADCOMPONENT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Tv3d8j81/dXs8vmj0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Tv3d8j81] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.w0ZhECeJ/ulLgeyT5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.w0ZhECeJ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.at3_DJRk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/jmkBKY4N] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/_vNhBS2C] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/Lp7Bj7VV] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/VStoH1Cu] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/RtnKeMAh] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/6n396vqe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/5RQ8IcQT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/YYXkA27M] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/VtFTOhDG] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/AqVS8SYn] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/4eD7hTtA] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/LuDISE5x] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/M0Ev4Nc0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/BRc3UghR] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/yTB2iwr6] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/c0uXo4mV] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/o64mLJO_] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/xU38pYhN] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/gkzUzFT3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/b12PtTSF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/PMI5Y04e] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/XjWviBuo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/HWyxLKYk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/h_yhz5L8] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/p6A5MMq9] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/RXRl8GwJ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/cLctQJoU] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/srTmJa8M] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/0uS8TkmM] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/cjOv00tW] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.0nEVO9GR] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gWancb0K] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.qCf93EWd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/vCwBpG6p] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/MmNwsq2h] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/rOzN_SZe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/No1Vx5ny] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.3n0UXGc3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Yk0D7L2C/qO6KJICI] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Yk0D7L2C] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9swZdOrL] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CoroutineManager] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.5zKkOVFJ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gTXvDb4H] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Qnuz7BWc] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.nc2u401B] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YYiGwJi3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.yDbER42t] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ov3y8N3k] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.vLwEV95l] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/ELYqtWGF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/TIFsiAon] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/TJ3JUD2x] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x8LKXtCc] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BL4vJsmv] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mEW52YiR] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/c0sQSwjy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/2RyUz8xU] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/6Haq2voD] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XgGi2zpU] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2FP9sCf3/rLO3Z9XC] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2FP9sCf3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.prBBwMDv] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.aQN973ZQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/aTkioWmi] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/iSUVaBl4] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/3TrFqi69] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/0FkXQ4Dk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/87mh_3d4] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/jIvCTvkO] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/fgTlRHRC] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/CMcBmsd4] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.k5l_lxlE] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EventSystemHelper] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/4ynTobZp] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/blOYMRZ2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/Ex7V21Bb] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/5kD02ud5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.URDDpYc1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.IEnumeratorTool/GeVe6wo3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.IEnumeratorTool/sMdhaxD5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.IEnumeratorTool] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.k4YHnMK1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.A3hjomtx] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.JaMZH4d3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/LlwJ0zCP] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/k4CIxSW3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/8x6hSN0j] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.R7NpzIqd/8q8eDZ47] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.R7NpzIqd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Us_0f8QM] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ajAcY7TQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.0B3Hw7na] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.yKp90H4j] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2nMefIVG] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CaRzb8cD] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.w2AWBw1v] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.hXd3WtBL/eQYi8URE] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.hXd3WtBL] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.cLCcmAH5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/qpK2IVm1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/UCVOMUFR] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/twvM_dZB] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/TUFS9eRy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.88yWHJxM] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.88yWHJxM/vhq2E9WF] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Ui_dcKdf] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Ui_dcKdf/l3YqCl36] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/1Bh_QWfG] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/W53H1ebW] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/7m9okZ4s] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.A8S4zLFC] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.A8S4zLFC/H02czusj] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AppsFlyerAdapter] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.uCaqyStv] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9GApI_pW] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.zDNNN65j] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCGameObject] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCTxData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCTxData/UYMnDcmK] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pw1Ws6hP] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.OQ7wQopp] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/9_BS5vmA] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/MND1HxcK] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/Y8xpjO0w] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/GHaKNPZQ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/_t4ZHNTl] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/uEEVdQKF] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/V4OQ31L7] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/0ws2mYnZ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/41lDihCz] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/ccXXDkBQ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/_zyXdppt] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/nxsCcUwH] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/pmMq_VhO] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/GTrHCHLU] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/tQSJp7MZ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/t5GXKTvA] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/bHWD42UG] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/8AT_1fh6] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/N3JIRQjs] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/o19a7d6J] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/nlo_ZP0I] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/3CV8qhkX] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/u8NrYgTF] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/PJF2CfVe] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/hFOgyH4e] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/34cLBkNm] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CrashlyticsTester] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7cRynXw2] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7cRynXw2/0VxqqhpJ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.o1OH7WRr] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.hYQVe5o2] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.3sthGmKI] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2jAJgNYQ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData/3Nj94sbw] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData/3x5RRfZg] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.oOmERjt5] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.oOmERjt5/voocrGB3] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.oOmERjt5/rcGAVdTg] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/zRITH_jP] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/w4N4M_Xw] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/ofMam6rE] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BznmJmYa] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BznmJmYa/cKnVbliE] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BznmJmYa/Ed5VmNRy] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.QXr1iL5O] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.qtqsmIXe] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.GRxoNryi] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bFg5xd7W] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.KkkaDjL3] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.e67xzOYb] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.vZTIIeQg] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.vZTIIeQg/SJ5JF5Ur] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.nO8n48Ss] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.nO8n48Ss/NxuR9q8V] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/9simCRPy] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/KxzQ7ezQ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/MAtg22bn] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/dvH5Zlaz] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/2xNWFuMe] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mBts_wvM] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mBts_wvM/oCezPJIj] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.g3GXId0k] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x0fCMBam] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x0fCMBam/zL2TaWY9] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XhUecnxQ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XhUecnxQ/yDrHoQBZ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.cXUljZUf] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.cXUljZUf/izLkI0t3] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ABConfigData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.VariableData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MpetvhxI] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ROg5OYuw] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ythF5mGN] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.uJAhKZKT] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Mb4Ja5WV] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mhcUQlNj] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YFAuWVBo] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/RViF1eIQ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/szvB20HO] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/NoINPiDq] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/mvHZsbRe] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/Jbqgtvpy] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/W7RbdPkT] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/9QkfiOzI] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/ndHdmrlG] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2jjKIPTT] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.PaymentTypeCode] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WithDrawConfig] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WithDrawOrder] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.0i071bSb] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AdSourceData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AdTypeData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.6fXFIxpL] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.NjH2WXSD] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.NjH2WXSD/IFZnh7lP] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.NjH2WXSD/IZhoRW4h] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.jzCfuJbF] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ydG6bXkW] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.PB9OnZ0A] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CVnMv7y4] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.p4_yafpP] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ZHsJgohg] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ZHsJgohg/aqJADNK1] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/yf0w1Epm] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/N5_OfSuB] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/AYTXAKJC] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/5SuD1tpQ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/4MQiUKky] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/LmTdIk8b] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/zB0YcEQV] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/lRnEE6Er] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XYJfEhoo] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XYJfEhoo/4j7ftM4n] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YTYDQ1WT] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YTYDQ1WT/zkW75Z1P] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Zo2ddxTn] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Zo2ddxTn/LG9pscCB] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pHQ3ZGsb] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pHQ3ZGsb/fWMNpoio] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pHQ3ZGsb/074XRt4p] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YuE61Qod] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.u5kvI8r4] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.T6zX5xuK] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.T6zX5xuK/uwmEsF9f] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AvU2nYHk] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.KXn4RF19] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.KXn4RF19/OzVG1Zsz] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/SDK_H5] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/<>c] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDK_ADCOMPONENT] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDK_ADCOMPONENT/dqAJHaMt] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Tv3d8j81] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Tv3d8j81/dXs8vmj0] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.w0ZhECeJ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.w0ZhECeJ/ulLgeyT5] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.at3_DJRk] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/jmkBKY4N] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/_vNhBS2C] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/Lp7Bj7VV] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/VStoH1Cu] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/RtnKeMAh] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/6n396vqe] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/5RQ8IcQT] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/YYXkA27M] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/VtFTOhDG] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/AqVS8SYn] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/4eD7hTtA] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/LuDISE5x] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/M0Ev4Nc0] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/BRc3UghR] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/yTB2iwr6] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/c0uXo4mV] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/o64mLJO_] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/xU38pYhN] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/gkzUzFT3] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/b12PtTSF] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/PMI5Y04e] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/XjWviBuo] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/HWyxLKYk] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/h_yhz5L8] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/p6A5MMq9] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/RXRl8GwJ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/cLctQJoU] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/srTmJa8M] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/0uS8TkmM] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/cjOv00tW] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.0nEVO9GR] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gWancb0K] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.qCf93EWd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/vCwBpG6p] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/MmNwsq2h] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/rOzN_SZe] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/No1Vx5ny] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.3n0UXGc3] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Yk0D7L2C] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Yk0D7L2C/qO6KJICI] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9swZdOrL] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CoroutineManager] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.5zKkOVFJ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gTXvDb4H] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Qnuz7BWc] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.nc2u401B] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YYiGwJi3] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.yDbER42t] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ov3y8N3k] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.vLwEV95l] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/ELYqtWGF] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/TIFsiAon] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/TJ3JUD2x] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x8LKXtCc] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BL4vJsmv] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mEW52YiR] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/c0sQSwjy] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/2RyUz8xU] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/6Haq2voD] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XgGi2zpU] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2FP9sCf3] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2FP9sCf3/rLO3Z9XC] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.prBBwMDv] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.aQN973ZQ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/aTkioWmi] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/iSUVaBl4] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/3TrFqi69] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/0FkXQ4Dk] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/87mh_3d4] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/jIvCTvkO] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/fgTlRHRC] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/CMcBmsd4] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.k5l_lxlE] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EventSystemHelper] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/4ynTobZp] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/blOYMRZ2] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/Ex7V21Bb] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/5kD02ud5] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.URDDpYc1] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.IEnumeratorTool] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.IEnumeratorTool/GeVe6wo3] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.IEnumeratorTool/sMdhaxD5] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.k4YHnMK1] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.A3hjomtx] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.JaMZH4d3] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/LlwJ0zCP] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/k4CIxSW3] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/8x6hSN0j] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.R7NpzIqd] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.R7NpzIqd/8q8eDZ47] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Us_0f8QM] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ajAcY7TQ] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.0B3Hw7na] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.yKp90H4j] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2nMefIVG] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CaRzb8cD] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.w2AWBw1v] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.hXd3WtBL] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.hXd3WtBL/eQYi8URE] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.cLCcmAH5] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/qpK2IVm1] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/UCVOMUFR] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/twvM_dZB] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/TUFS9eRy] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] Loom/5xz9zULT] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] Loom/lo7NvgTj] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] Loom/sK51KAZR] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] jg1RtNaw/Si6unDL2] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] UnityTimer.Timer/TimerManager/<>c] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] UnityTimer.Timer/TimerManager] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.88yWHJxM/vhq2E9WF] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Ui_dcKdf/l3YqCl36] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/1Bh_QWfG] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/W53H1ebW] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/7m9okZ4s] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.A8S4zLFC/H02czusj] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCTxData/UYMnDcmK] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCTxData] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/9_BS5vmA] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/MND1HxcK] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/Y8xpjO0w] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/GHaKNPZQ] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/_t4ZHNTl] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/uEEVdQKF] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/V4OQ31L7] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/0ws2mYnZ] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/41lDihCz] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/ccXXDkBQ] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/_zyXdppt] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/nxsCcUwH] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/pmMq_VhO] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/GTrHCHLU] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/tQSJp7MZ] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/t5GXKTvA] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/bHWD42UG] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/8AT_1fh6] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/N3JIRQjs] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/o19a7d6J] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/nlo_ZP0I] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/3CV8qhkX] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/u8NrYgTF] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/PJF2CfVe] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/hFOgyH4e] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/34cLBkNm] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7cRynXw2/0VxqqhpJ] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData/3Nj94sbw] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData/3x5RRfZg] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.oOmERjt5/voocrGB3] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.oOmERjt5/rcGAVdTg] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/zRITH_jP] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/w4N4M_Xw] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/ofMam6rE] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BznmJmYa/cKnVbliE] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BznmJmYa/Ed5VmNRy] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.vZTIIeQg/SJ5JF5Ur] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.nO8n48Ss/NxuR9q8V] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/9simCRPy] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/KxzQ7ezQ] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/MAtg22bn] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/dvH5Zlaz] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/2xNWFuMe] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mBts_wvM/oCezPJIj] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x0fCMBam/zL2TaWY9] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XhUecnxQ/yDrHoQBZ] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.cXUljZUf/izLkI0t3] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/RViF1eIQ] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/szvB20HO] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/NoINPiDq] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/mvHZsbRe] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/Jbqgtvpy] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/W7RbdPkT] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/9QkfiOzI] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/ndHdmrlG] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.PaymentTypeCode] Because of compatibility component: Obfuscator - Compatibility : Has DoNotRenameAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.NjH2WXSD/IFZnh7lP] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.NjH2WXSD/IZhoRW4h] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ZHsJgohg/aqJADNK1] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/yf0w1Epm] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/N5_OfSuB] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/AYTXAKJC] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/5SuD1tpQ] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/4MQiUKky] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/LmTdIk8b] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/zB0YcEQV] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/lRnEE6Er] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XYJfEhoo/4j7ftM4n] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YTYDQ1WT/zkW75Z1P] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Zo2ddxTn/LG9pscCB] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pHQ3ZGsb/fWMNpoio] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pHQ3ZGsb/074XRt4p] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.T6zX5xuK/uwmEsF9f] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.KXn4RF19/OzVG1Zsz] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/SDK_H5] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/<>c] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDK_ADCOMPONENT/dqAJHaMt] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Tv3d8j81/dXs8vmj0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.w0ZhECeJ/ulLgeyT5] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/jmkBKY4N] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/_vNhBS2C] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/Lp7Bj7VV] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/VStoH1Cu] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/RtnKeMAh] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/6n396vqe] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/5RQ8IcQT] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/YYXkA27M] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/VtFTOhDG] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/AqVS8SYn] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/4eD7hTtA] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/LuDISE5x] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/M0Ev4Nc0] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/BRc3UghR] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/yTB2iwr6] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/c0uXo4mV] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/o64mLJO_] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/xU38pYhN] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/gkzUzFT3] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/b12PtTSF] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/PMI5Y04e] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/XjWviBuo] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/HWyxLKYk] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/h_yhz5L8] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/p6A5MMq9] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/RXRl8GwJ] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/cLctQJoU] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/srTmJa8M] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/0uS8TkmM] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/cjOv00tW] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/vCwBpG6p] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/MmNwsq2h] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/rOzN_SZe] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/No1Vx5ny] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Yk0D7L2C/qO6KJICI] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/ELYqtWGF] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/TIFsiAon] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/TJ3JUD2x] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/c0sQSwjy] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/2RyUz8xU] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/6Haq2voD] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2FP9sCf3/rLO3Z9XC] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/aTkioWmi] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/iSUVaBl4] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/3TrFqi69] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/0FkXQ4Dk] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/87mh_3d4] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/jIvCTvkO] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/fgTlRHRC] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/CMcBmsd4] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/4ynTobZp] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/blOYMRZ2] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/Ex7V21Bb] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/5kD02ud5] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.IEnumeratorTool/GeVe6wo3] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.IEnumeratorTool/sMdhaxD5] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/LlwJ0zCP] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/k4CIxSW3] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/8x6hSN0j] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.R7NpzIqd/8q8eDZ47] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.hXd3WtBL/eQYi8URE] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/qpK2IVm1] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/UCVOMUFR] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/twvM_dZB] Is a nested class and has no namespace.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Types Namespace [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/TUFS9eRy] Is a nested class and has no namespace.
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component Class - Obfuscation
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Find MemberReferences...
@@ -12811,10 +15038,9 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType0`8] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType1`11] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType2`3] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType3`2] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType4`2] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType5`2] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] <>f__AnonymousType6`2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] Microsoft.CodeAnalysis.EmbeddedAttribute] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] System.Runtime.CompilerServices.NullableAttribute] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] System.Runtime.CompilerServices.NullableContextAttribute] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ConsoleProDebug] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] CreatSheepCard] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppMsg] Analyse Type References in Custom Attribute References...
@@ -12851,12 +15077,33 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] CommonExpand] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FXPool`1] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MD5Kit] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] WebViewByHide/ThroughState] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] WebViewByHide] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] WebViewByJS] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SaveingPotClass] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SaveingPotTaskStatus] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SaveingPotHelper] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MYp0ZVTT2QSDKDemo/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] MYp0ZVTT2QSDKDemo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] InAppPurchaseValidationResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ProductPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ValidationFailureData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SubscriptionValidationResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SubscriptionPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] CanceledStateContext] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ExternalAccountIdentifiers] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SubscriptionPurchaseLineItem] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PausedStateContext] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SubscribeWithGoogleInfo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] TestPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] DeveloperInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ReplacementCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SystemInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] UserInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AutoRenewingPlan] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] DeferredItemReplacement] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] OfferDetails] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PrepaidPlan] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] CancelSurveyResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SubscriptionItemPriceChangeDetails] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] Money] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] BrigdeIOS] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ItemEnum] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FGUIClickDetection] Analyse Type References in Custom Attribute References...
@@ -12878,10 +15125,9 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PanelHole] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PanelImage] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass22_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass28_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass30_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/d__29] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass21_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/<>c__DisplayClass23_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager/d__22] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] PurchasingManager] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AndroidVibration] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] HapticManager] Analyse Type References in Custom Attribute References...
@@ -12924,8 +15170,20 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.BoxTypeLogic] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.PanelLogic] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.ScrewsLogic/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.ScrewsLogic/<>c__DisplayClass16_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.ScrewsLogic/<>c__DisplayClass17_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] SGame.ScrewsLogic] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.MediationNetwork] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.AdRevenueScheme] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.AFAdRevenueData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerPurchaseConnector] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.Store] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerAutoLogPurchaseRevenueOptions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.StoreKitVersion] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] AppsFlyerSDK.IAppsFlyerPurchaseValidation] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] FutureCore.Base64EncodeUtil] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.App/<>c] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.App] Analyse Type References in Custom Attribute References...
@@ -13040,9 +15298,10 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.FGUIHelper] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.ParticleUnscaledTime] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.PlayerPrefsKit] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.AppsFlyerObjectScript1/d__3] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.AppsFlyerObjectScript1] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.MaxADKit/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.MaxADKit/<>c__DisplayClass2_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.MaxADKit/<>c__DisplayClass7_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.MaxADKit] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.PlayerPrefsConst] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.AdTaskData] Analyse Type References in Custom Attribute References...
@@ -13229,6 +15488,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.GetTaskRewardUICtrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5Ctrl] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5Model] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5UI/<>c] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5UI/<>c__DisplayClass28_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5UI/<>c__DisplayClass37_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5UI/<>c__DisplayClass58_0] Analyse Type References in Custom Attribute References...
@@ -13481,27 +15741,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.AndroidPointEvent] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.BuriedPointEvent] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.QuestionBankKit] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebAutoRefreshUrl] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebviewConst] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.H5WebThroughType] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebUIType] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughScale] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughUtil] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMaskUtil] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughBase] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughFly] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughHide] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughOnline] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebThroughPop] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewCtrl] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/UserType] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/WebType] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/GameUrlInfo] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c__DisplayClass36_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c__DisplayClass40_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr/<>c__DisplayClass59_0] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebViewMgr] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.SaveData] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.Saveobject] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[Assembly-CSharp] ScrewsMaster.WebviewManager/<>c] Analyse Type References in Custom Attribute References...
@@ -14228,6 +16467,74 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[spine-unity] Spine.Collections.CollectionExtensions] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [spine-unity] Find Member to skip...
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[spine-unity] Spine.Unity.AttachmentTools.AtlasUtilities] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper/Task] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper/DestryAdTask] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] AdHelper] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.IOSClientFactory] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityTools] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityinterstitialAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitypopupAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySplashAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IBannerAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IBigoAd`1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IClientBidding] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IClientFactory] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IInterstitialAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.INativeAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IPopupAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.IRewardedAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.ISDK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Common.ISplashAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoAdSdk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoBannerAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoBannerRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoInterstitialRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoNativeAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoNativeRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoPopupAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoPopupRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRewardedAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoRewardedRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoSplashAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.BigoSplashRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdLossReason] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[BigoAds] BigoAds.Scripts.Api.Constant.ConsentOptions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute.
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Type References in Module...
@@ -14238,12 +16545,11 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxEvents/AppLovin] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxEvents] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdk] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkAndroid/BackgroundCallbackProxy] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkAndroid] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/ConsentFlowUserGeography] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/AppTrackingStatus] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/InitializationStatus] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/AdViewPosition] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/BannerPosition] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/AdViewConfiguration] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/SdkConfiguration] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/Reward] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/ErrorCode] Analyse Type References in Custom Attribute References...
@@ -14256,24 +16562,24 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/MediatedNetworkInfo] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/ErrorInfo] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/SafeAreaInsets] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/BannerPosition] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase/ConsentDialogState] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkBase] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AdPositionExtenstion] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/Interstitial] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/AppOpen] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/Rewarded] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/RewardedInterstitial] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/Banner] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/MRec] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass155_0`1] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass156_0`2] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass157_0`3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass15_0`1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass16_0`2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks/<>c__DisplayClass17_0`3] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkCallbacks] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkiOS/ALUnityBackgroundCallback] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkiOS] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkLogger] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkUtils/VersionComparisonResult] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkUtils/<>c__DisplayClass33_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkUtils/<>c__DisplayClass34_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSdkUtils] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSegmentCollection/MaxSegmentCollectionBuilder] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] MaxSegmentCollection] Analyse Type References in Custom Attribute References...
@@ -14287,17 +16593,61 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor/MaxAction] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor/<>c__DisplayClass6_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.WebRequestType] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.WebRequestConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.WebResponse] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c__DisplayClass5_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/<>c__DisplayClass6_0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/d__5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest/d__8] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequestExtension/d__0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MaxSdk.Scripts] AppLovinMax.Internal.MaxWebRequestExtension] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find Member to skip...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Analyse Type References in Module...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] Microsoft.CodeAnalysis.EmbeddedAttribute] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] System.Runtime.CompilerServices.NullableAttribute] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] System.Runtime.CompilerServices.NullableContextAttribute] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFInAppEvents] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerObjectScript] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] InAppPurchaseValidationResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] ProductPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] ValidationFailureData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SubscriptionValidationResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SubscriptionPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] CanceledStateContext] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] ExternalAccountIdentifiers] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SubscriptionPurchaseLineItem] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] PausedStateContext] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SubscribeWithGoogleInfo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] TestPurchase] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] DeveloperInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] ReplacementCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SystemInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] UserInitiatedCancellation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AutoRenewingPlan] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] DeferredItemReplacement] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] OfferDetails] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] PrepaidPlan] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] CancelSurveyResult] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] SubscriptionItemPriceChangeDetails] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] Money] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Parser/TOKEN] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Parser] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Serializer] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.MediationNetwork] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AdRevenueScheme] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFAdRevenueData] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFPurchaseType] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFPurchaseDetailsAndroid] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseType] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKPurchaseDetailsIOS] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogStatus] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AFSDKValidateAndLogResult] Analyse Type References in Custom Attribute References...
@@ -14311,18 +16661,83 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.DeepLinkError] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AppsFlyeriOS/unityCallBack] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AppsFlyeriOS] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AppsFlyerPurchaseConnector] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.Store] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.AppsFlyerAutoLogPurchaseRevenueOptions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.StoreKitVersion] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerAndroidBridge] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerConversionData] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerIOSBridge] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerNativeBridge] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerPurchaseValidation] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerUserInvite] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateAndLog] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AppsFlyerSDK.IAppsFlyerValidateReceipt] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Parser/TOKEN] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Parser] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json/Serializer] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[AppsFlyer] AFMiniJSON.Json] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [AppsFlyer] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/RequestAuthorizationTrackingCompleteHandler] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/AuthorizationTrackingStatus] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.SkAdNetworkBinding] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] IKwaiAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAdsMgr/InitResultCallbackImpl] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAdsMgr] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiLog] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd/InterstitialAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd/InterstitialAdLoadListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiInterAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd/RewardAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd/RewardAdLoadListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiVideoAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] BigoAds.Scripts.Platforms.Android.AndroidPlatformTool] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IRwardAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IClientBidding] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IClientFactory] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.IKwaiAdController`3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Common.ISDK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants/Request] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants/Currency] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Constants] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.InitResultCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig/Builder] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiAdsSdk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.KwaiRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdController] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.IRewardAdLoadListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Reward.KwaiRewardAdRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdController] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.IInterstitialAdLoadListener] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[KwaiAds] KwaiAds.Scripts.Api.Interstitial.KwaiInterstitialAdRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [KwaiAds] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] MYp0ZVTT2QSDK.SDKConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[SDKConfig] MYp0ZVTT2QSDK.AssetUtils] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [SDKConfig] Find Member to skip...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Analyse Type References in Module...
@@ -14418,6 +16833,53 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils/Physics] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[DOTween.Modules] DG.Tweening.DOTweenModuleUtils] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTween.Modules] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.AuthorizationOption] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSAuthorizationRequestData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.AuthorizationRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.PresentationOption] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.NotificationSoundType] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.NotificationInterruptionLevel] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.TimeTriggerData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.CalendarTriggerData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.LocationTriggerData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.TriggerData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotification] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationActionOptions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationActionIconType] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationAction] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSTextInputNotificationAction] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationAttachment] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCategoryOptions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCategory] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter/NotificationReceivedCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter/AuthorizationRequestCompletedCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCenter] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.AuthorizationStatus] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.AlertStyle] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.ShowPreviewsSetting] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.NotificationSetting] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationSettings] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationWithUserInfo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/AuthorizationRequestCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/NotificationReceivedCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/ReceiveNSDictionaryKeyValueCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper/ReceiveUNNotificationAttachmentCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationTriggerType] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationTrigger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationLocationTrigger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationPushTrigger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationTimeIntervalTrigger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationCalendarTrigger] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.iOS] Find Member to skip...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Analyse Type References in Module...
@@ -14458,24 +16920,368 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator/<>c__DisplayClass46_0] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [[DOTweenPro.Scripts] DG.Tweening.DOTweenTMPAnimator] Analyse Type References in Custom Attribute References...
[Info][OPS.OBF][OnAnalyse_Assemblies] [DOTweenPro.Scripts] Find Member to skip...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Member...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Find MemberReferences...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Type References in Module...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/RequestAuthorizationTrackingCompleteHandler] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding/AuthorizationTrackingStatus] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.ATTrackingStatusBinding] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Advertisement.IosSupport] Unity.Advertisement.IosSupport.SkAdNetworkBinding] Analyse Type References in Custom Attribute References...
-[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Advertisement.IosSupport] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.ISDKInitCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoAdSDK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoInterAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoInterAdListenerProxy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoRewardAd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[VosacoSDK] AD.VosacoSDK.VosacoRewardAdListenerProxy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [VosacoSDK] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.Notification] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationPresentation] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationSettingsSection] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationCenterArgs] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationCenter/NotificationReceivedCallback] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationCenter] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationRepeatInterval] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationSchedule] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationIntervalSchedule] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationDateTimeSchedule] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationsPermissionStatus] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[Unity.Notifications.Unified] Unity.Notifications.NotificationsPermissionRequest] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [Unity.Notifications.Unified] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] WebViewObject] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1/MonoScriptData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[WebView] UnitySourceGeneratedAssemblyMonoScriptTypes_v1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [WebView] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Analyse Type References in Module...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] qvxnf1_T] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] Loom/5xz9zULT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] Loom/lo7NvgTj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] Loom/sK51KAZR] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] Loom] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] e74JB4vt] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] HYM9xtVX] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] jg1RtNaw/Si6unDL2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] jg1RtNaw] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] UnityTimer.Timer/TimerManager/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] UnityTimer.Timer/TimerManager] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] UnityTimer.Timer] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] UnityTimer.TimerExtensions] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.88yWHJxM/vhq2E9WF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.88yWHJxM] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Ui_dcKdf/l3YqCl36] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Ui_dcKdf] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/1Bh_QWfG] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/W53H1ebW] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH/7m9okZ4s] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7xSreMBH] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.A8S4zLFC/H02czusj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.A8S4zLFC] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AppsFlyerAdapter] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.uCaqyStv] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9GApI_pW] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.zDNNN65j] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCGameObject] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCTxData/UYMnDcmK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCTxData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pw1Ws6hP] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.OQ7wQopp] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/9_BS5vmA] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/MND1HxcK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/Y8xpjO0w] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/GHaKNPZQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/_t4ZHNTl] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/uEEVdQKF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/V4OQ31L7] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/0ws2mYnZ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/41lDihCz] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/ccXXDkBQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/_zyXdppt] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/nxsCcUwH] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/pmMq_VhO] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/GTrHCHLU] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/tQSJp7MZ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/t5GXKTvA] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/bHWD42UG] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice/8AT_1fh6] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.81FMdice] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/N3JIRQjs] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/o19a7d6J] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/nlo_ZP0I] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/3CV8qhkX] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/u8NrYgTF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/PJF2CfVe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/hFOgyH4e] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O/34cLBkNm] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9LmrO57O] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CrashlyticsTester] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7cRynXw2/0VxqqhpJ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.7cRynXw2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.o1OH7WRr] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.hYQVe5o2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.3sthGmKI] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2jAJgNYQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData/3Nj94sbw] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData/3x5RRfZg] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.oOmERjt5/voocrGB3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.oOmERjt5/rcGAVdTg] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.oOmERjt5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/zRITH_jP] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/w4N4M_Xw] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj/ofMam6rE] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gW6x2rrj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BznmJmYa/cKnVbliE] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BznmJmYa/Ed5VmNRy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BznmJmYa] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.QXr1iL5O] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.qtqsmIXe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.GRxoNryi] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bFg5xd7W] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.KkkaDjL3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.e67xzOYb] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.vZTIIeQg/SJ5JF5Ur] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.vZTIIeQg] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.nO8n48Ss/NxuR9q8V] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.nO8n48Ss] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/9simCRPy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/KxzQ7ezQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/MAtg22bn] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/dvH5Zlaz] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj/2xNWFuMe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EXIerXNj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mBts_wvM/oCezPJIj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mBts_wvM] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.g3GXId0k] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x0fCMBam/zL2TaWY9] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x0fCMBam] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XhUecnxQ/yDrHoQBZ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XhUecnxQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.cXUljZUf/izLkI0t3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.cXUljZUf] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ABConfigData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.VariableData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MpetvhxI] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ROg5OYuw] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ythF5mGN] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.uJAhKZKT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Mb4Ja5WV] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mhcUQlNj] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YFAuWVBo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/RViF1eIQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/szvB20HO] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/NoINPiDq] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/mvHZsbRe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/Jbqgtvpy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/W7RbdPkT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/9QkfiOzI] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV/ndHdmrlG] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1DgVhGfV] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2jjKIPTT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.PaymentTypeCode] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WithDrawConfig] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WithDrawOrder] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.0i071bSb] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AdSourceData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AdTypeData] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.6fXFIxpL] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.NjH2WXSD/IFZnh7lP] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.NjH2WXSD/IZhoRW4h] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.NjH2WXSD] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.jzCfuJbF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ydG6bXkW] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.PB9OnZ0A] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CVnMv7y4] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.p4_yafpP] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ZHsJgohg/aqJADNK1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ZHsJgohg] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/yf0w1Epm] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/N5_OfSuB] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/AYTXAKJC] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/5SuD1tpQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/4MQiUKky] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/LmTdIk8b] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/zB0YcEQV] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1/lRnEE6Er] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2B5FJ4D1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XYJfEhoo/4j7ftM4n] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XYJfEhoo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YTYDQ1WT/zkW75Z1P] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YTYDQ1WT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Zo2ddxTn/LG9pscCB] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Zo2ddxTn] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pHQ3ZGsb/fWMNpoio] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pHQ3ZGsb/074XRt4p] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.pHQ3ZGsb] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YuE61Qod] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.u5kvI8r4] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.T6zX5xuK/uwmEsF9f] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.T6zX5xuK] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AvU2nYHk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.KXn4RF19/OzVG1Zsz] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.KXn4RF19] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/SDK_H5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/<>c] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDK_ADCOMPONENT/dqAJHaMt] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDK_ADCOMPONENT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Tv3d8j81/dXs8vmj0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Tv3d8j81] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.w0ZhECeJ/ulLgeyT5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.w0ZhECeJ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.at3_DJRk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/jmkBKY4N] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/_vNhBS2C] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/Lp7Bj7VV] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/VStoH1Cu] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/RtnKeMAh] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/6n396vqe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/5RQ8IcQT] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/YYXkA27M] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/VtFTOhDG] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/AqVS8SYn] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/4eD7hTtA] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/LuDISE5x] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/M0Ev4Nc0] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/BRc3UghR] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/yTB2iwr6] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7/c0uXo4mV] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.1z91scM7] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/o64mLJO_] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/xU38pYhN] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/gkzUzFT3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/b12PtTSF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/PMI5Y04e] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/XjWviBuo] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/HWyxLKYk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/h_yhz5L8] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/p6A5MMq9] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/RXRl8GwJ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u/cLctQJoU] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x5VWPp7u] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/srTmJa8M] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/0uS8TkmM] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr/cjOv00tW] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WDo1nsGr] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.0nEVO9GR] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gWancb0K] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.qCf93EWd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/vCwBpG6p] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/MmNwsq2h] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/rOzN_SZe] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L/No1Vx5ny] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ULZomk4L] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.3n0UXGc3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Yk0D7L2C/qO6KJICI] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Yk0D7L2C] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.9swZdOrL] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CoroutineManager] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.5zKkOVFJ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.gTXvDb4H] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Qnuz7BWc] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.nc2u401B] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.YYiGwJi3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.yDbER42t] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ov3y8N3k] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.vLwEV95l] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/ELYqtWGF] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/TIFsiAon] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5/TJ3JUD2x] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.bY0Yfqz5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.x8LKXtCc] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.BL4vJsmv] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.mEW52YiR] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/c0sQSwjy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/2RyUz8xU] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH/6Haq2voD] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.N_hPhtUH] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.XgGi2zpU] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2FP9sCf3/rLO3Z9XC] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2FP9sCf3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.prBBwMDv] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.aQN973ZQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/aTkioWmi] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/iSUVaBl4] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/3TrFqi69] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/0FkXQ4Dk] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/87mh_3d4] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/jIvCTvkO] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/fgTlRHRC] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD/CMcBmsd4] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ItuCLcWD] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.k5l_lxlE] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.EventSystemHelper] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/4ynTobZp] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/blOYMRZ2] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/Ex7V21Bb] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool/5kD02ud5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HttpRequestTool] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.URDDpYc1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.IEnumeratorTool/GeVe6wo3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.IEnumeratorTool/sMdhaxD5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.IEnumeratorTool] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.k4YHnMK1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.A3hjomtx] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.JaMZH4d3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/LlwJ0zCP] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/k4CIxSW3] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher/8x6hSN0j] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.UnityMainThreadDispatcher] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.R7NpzIqd/8q8eDZ47] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.R7NpzIqd] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.Us_0f8QM] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ajAcY7TQ] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.0B3Hw7na] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.yKp90H4j] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.2nMefIVG] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CaRzb8cD] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.w2AWBw1v] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.hXd3WtBL/eQYi8URE] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.hXd3WtBL] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.cLCcmAH5] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/qpK2IVm1] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/UCVOMUFR] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/twvM_dZB] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go/TUFS9eRy] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.HajXt7go] Analyse Type References in Custom Attribute References...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [MYp0ZVTT2QSDK] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Members [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ABConfigData] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotObfuscateClassAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.ABConfigData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Members [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.VariableData] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotObfuscateClassAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.VariableData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Members [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WithDrawConfig] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotObfuscateClassAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WithDrawConfig] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Members [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WithDrawOrder] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotObfuscateClassAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.WithDrawOrder] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Members [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AdSourceData] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotObfuscateClassAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AdSourceData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Members [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AdTypeData] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotObfuscateClassAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.AdTypeData] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Members [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/SDK_H5] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotObfuscateClassAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/SDK_H5] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type and Members [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper] Because of compatibility component: Obfuscator - Compatibility : Has the DoNotObfuscateClassAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/SDK_H5] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Full Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MYp0ZVTT2QSDKHelper/<>c] Because of the type skipping settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.CCTxData] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.MobileData] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[MYp0ZVTT2QSDK] MYp0ZVTT2QSDK.PaymentTypeCode] Because of compatibility component: Obfuscator - Compatibility : Has DoNotRenameAttribute.
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component Type Cache Replacement
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component MonoBehaviour - Class - Obfuscation
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] CreatSheepCard] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] ErrorLogger] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] InitializeUnityServices] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] WebViewByHide] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] WebViewByJS] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] MYp0ZVTT2QSDKDemo] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] FGUIClickDetection] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] ItemNumShow] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] KongLogic] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
@@ -14493,6 +17299,8 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] SGame.BoxTypeLogic] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] SGame.PanelLogic] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] SGame.ScrewsLogic] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerPurchaseConnector] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] ScrewsMaster.AsyncKitUnityBehaviour] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] ScrewsMaster.CrazyZooBoot] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] ScrewsMaster.CrazyZooCore] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
@@ -14552,10 +17360,15 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[spine-unity] Spine.Unity.SkeletonUtilityBone] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[spine-unity] Spine.Unity.SkeletonUtilityConstraint] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[spine-unity] Spine.Unity.Deprecated.SlotBlendModes] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[BigoAds] BigoAds.Scripts.Common.BigoDispatcher] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[MaxSdk.Scripts] AppLovinMax.Internal.MaxEventExecutor] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[AppsFlyer] AppsFlyerObjectScript] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[AppsFlyer] AppsFlyerSDK.AppsFlyer] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[AppsFlyer] AppsFlyerSDK.AppsFlyerPurchaseConnector] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Unity.Notifications.iOS] Unity.Notifications.iOS.iOSNotificationsWrapper] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[DOTweenPro.Scripts] DG.Tweening.DOTweenAnimation] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[WebView] WebViewObject] Obfuscation of MonoBehaviours in Unity Assemblies got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component MonoBehaviour - Class - Subtype Obfuscation
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component ScriptableObject - Class - Obfuscation
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[Assembly-CSharp] AnimationCurveData] Obfuscation of ScriptableObjects got deactivated by settings.
@@ -14602,6 +17415,36 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[spine-unity] UnityEngine.Material Spine.Unity.BlendModeMaterialsAsset::screenMaterialTemplate] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[spine-unity] UnityEngine.Material Spine.Unity.BlendModeMaterialsAsset::additiveMaterialTemplate] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[spine-unity] System.Boolean Spine.Unity.BlendModeMaterialsAsset::applyAdditiveMaterial] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Type [[SDKConfig] MYp0ZVTT2QSDK.SDKConfig] Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::appsFlyerDevKey] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::appsFlyerIosAppleAppId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::appKey] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::appSecret] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::logReportUrl] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::maxAppKey] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::splashUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::bannerUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::interUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::videoUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::kwaiAppId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 MYp0ZVTT2QSDK.SDKConfig::kwaiVideoUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 MYp0ZVTT2QSDK.SDKConfig::kwaiInterUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::bigoAppId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 MYp0ZVTT2QSDK.SDKConfig::bigoVideoUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Collections.Generic.List`1 MYp0ZVTT2QSDK.SDKConfig::bigoInterUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::bigoSplashUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::toponAppId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::toponAppkey] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::toponVideoUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::toponInterUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::admobAppId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::admobVideoUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::admobInterUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.String MYp0ZVTT2QSDK.SDKConfig::admobSplashUnitId] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Boolean MYp0ZVTT2QSDK.SDKConfig::isDebug] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Boolean MYp0ZVTT2QSDK.SDKConfig::isPrintLog] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] System.Boolean MYp0ZVTT2QSDK.SDKConfig::isUseAdmobSplash] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Field [[SDKConfig] MYp0ZVTT2QSDK.SDKConfig MYp0ZVTT2QSDK.SDKConfig::_instance] Is in ScriptableObject and this ScriptableObject gets not obfuscated: Obfuscation of ScriptableObjects got deactivated by settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component Playable - Class - Obfuscation
[Info][OPS.OBF][OnAnalyse_Assemblies] Process component Method - Obfuscation
[Info][OPS.OBF][OnAnalyse_Assemblies] [Assembly-CSharp] Analyse Member...
@@ -14647,34 +17490,14 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean <>f__AnonymousType2`3::Equals(System.Object)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 <>f__AnonymousType2`3::GetHashCode()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String <>f__AnonymousType2`3::ToString()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] j__TPar <>f__AnonymousType3`2::get_gameUrlInfo()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] j__TPar <>f__AnonymousType3`2::get_id()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void <>f__AnonymousType3`2::.ctor(j__TPar,j__TPar)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void <>f__AnonymousType3`2::.ctor(j__TPar,j__TPar)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean <>f__AnonymousType3`2::Equals(System.Object)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 <>f__AnonymousType3`2::GetHashCode()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String <>f__AnonymousType3`2::ToString()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] <<>h__TransparentIdentifier0>j__TPar <>f__AnonymousType4`2::get_<>h__TransparentIdentifier0()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] j__TPar <>f__AnonymousType4`2::get_ctCount()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void <>f__AnonymousType4`2::.ctor(<<>h__TransparentIdentifier0>j__TPar,j__TPar)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void <>f__AnonymousType4`2::.ctor(<<>h__TransparentIdentifier0>j__TPar,j__TPar)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean <>f__AnonymousType4`2::Equals(System.Object)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 <>f__AnonymousType4`2::GetHashCode()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String <>f__AnonymousType4`2::ToString()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] <<>h__TransparentIdentifier1>j__TPar <>f__AnonymousType5`2::get_<>h__TransparentIdentifier1()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] j__TPar <>f__AnonymousType5`2::get_probability()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void <>f__AnonymousType5`2::.ctor(<<>h__TransparentIdentifier1>j__TPar,j__TPar)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void <>f__AnonymousType5`2::.ctor(<<>h__TransparentIdentifier1>j__TPar,j__TPar)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean <>f__AnonymousType5`2::Equals(System.Object)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 <>f__AnonymousType5`2::GetHashCode()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String <>f__AnonymousType5`2::ToString()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] <<>h__TransparentIdentifier2>j__TPar <>f__AnonymousType6`2::get_<>h__TransparentIdentifier2()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] j__TPar <>f__AnonymousType6`2::get_hideWebLink()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void <>f__AnonymousType6`2::.ctor(<<>h__TransparentIdentifier2>j__TPar,j__TPar)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void <>f__AnonymousType6`2::.ctor(<<>h__TransparentIdentifier2>j__TPar,j__TPar)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean <>f__AnonymousType6`2::Equals(System.Object)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 <>f__AnonymousType6`2::GetHashCode()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String <>f__AnonymousType6`2::ToString()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void Microsoft.CodeAnalysis.EmbeddedAttribute::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void Microsoft.CodeAnalysis.EmbeddedAttribute::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void System.Runtime.CompilerServices.NullableAttribute::.ctor(System.Byte)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void System.Runtime.CompilerServices.NullableAttribute::.ctor(System.Byte)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void System.Runtime.CompilerServices.NullableAttribute::.ctor(System.Byte[])] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void System.Runtime.CompilerServices.NullableAttribute::.ctor(System.Byte[])] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void System.Runtime.CompilerServices.NullableContextAttribute::.ctor(System.Byte)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void System.Runtime.CompilerServices.NullableContextAttribute::.ctor(System.Byte)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ConsoleProDebug::Clear()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ConsoleProDebug::LogToFilter(System.String,System.String)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ConsoleProDebug::LogAsType(System.String,System.String)] Because of your defined Method obfuscation settings.
@@ -14787,15 +17610,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String MD5Kit::MD5String1(System.String)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MD5Kit::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MD5Kit::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void WebViewByHide::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void WebViewByHide::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void WebViewByHide::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void WebViewByJS::Start()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void WebViewByJS::Start()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void WebViewByJS::FixedUpdate()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void WebViewByJS::InvokeEventNow()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void WebViewByJS::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void WebViewByJS::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SaveingPotClass::SetStatus(SaveingPotTaskStatus)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String SaveingPotClass::GetAmountStr()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SaveingPotClass::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -14808,6 +17622,75 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String SaveingPotHelper::getCashNumber(System.Single)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SaveingPotHelper::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SaveingPotHelper::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo/<>c::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::ShowReward()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::ShowInter()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::ShowAdmobInter()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::ShowSplash()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::CheckReward(UnityEngine.UI.Image)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::CheckInter(UnityEngine.UI.Image)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::CheckSplash(UnityEngine.UI.Image)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::Track()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::GetCountryCode()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::ShowH5()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::ShowH5(UnityEngine.RectTransform)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::HideH5()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::CheckShowH5(UnityEngine.UI.Image)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::TrackLevel()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::GetWithDrawConfigs()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::CreateWithDrawOrder()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::GetWithDrawOrders()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::Start()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String MYp0ZVTT2QSDKDemo::GetSdkVersion()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void MYp0ZVTT2QSDKDemo::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void InAppPurchaseValidationResult::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void InAppPurchaseValidationResult::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ProductPurchase::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ProductPurchase::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ValidationFailureData::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ValidationFailureData::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SubscriptionValidationResult::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SubscriptionValidationResult::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SubscriptionPurchase::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SubscriptionPurchase::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void CanceledStateContext::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void CanceledStateContext::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ExternalAccountIdentifiers::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ExternalAccountIdentifiers::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SubscriptionPurchaseLineItem::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SubscriptionPurchaseLineItem::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PausedStateContext::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PausedStateContext::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SubscribeWithGoogleInfo::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SubscribeWithGoogleInfo::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void TestPurchase::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void TestPurchase::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void DeveloperInitiatedCancellation::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void DeveloperInitiatedCancellation::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ReplacementCancellation::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ReplacementCancellation::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SystemInitiatedCancellation::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SystemInitiatedCancellation::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void UserInitiatedCancellation::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void UserInitiatedCancellation::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AutoRenewingPlan::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AutoRenewingPlan::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void DeferredItemReplacement::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void DeferredItemReplacement::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void OfferDetails::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void OfferDetails::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PrepaidPlan::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PrepaidPlan::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void CancelSurveyResult::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void CancelSurveyResult::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SubscriptionItemPriceChangeDetails::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SubscriptionItemPriceChangeDetails::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void Money::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void Money::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void BrigdeIOS::SetDarkThough(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void BrigdeIOS::SetDarkThough(System.Boolean)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void BrigdeIOS::openWebview()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -14885,29 +17768,22 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c__DisplayClass22_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c__DisplayClass22_0::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c__DisplayClass28_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c__DisplayClass28_0::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c__DisplayClass30_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c__DisplayClass30_0::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/d__29::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/d__29::.ctor(System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean PurchasingManager/d__29::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c__DisplayClass21_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c__DisplayClass21_0::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c__DisplayClass23_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/<>c__DisplayClass23_0::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/d__22::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager/d__22::.ctor(System.Int32)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean PurchasingManager/d__22::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::InitProduct()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::Purchase(ApplePayClass)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::IosRestore(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::OnInitialized(UnityEngine.Purchasing.IStoreController,UnityEngine.Purchasing.IExtensionProvider)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::OnPurchaseFailed(UnityEngine.Purchasing.Product,UnityEngine.Purchasing.PurchaseFailureReason)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::SaveApplePayData(System.Collections.Generic.Dictionary`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] UnityEngine.Purchasing.PurchaseProcessingResult PurchasingManager::ProcessPurchase(UnityEngine.Purchasing.PurchaseEventArgs)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::ApplePaySuccess(System.String)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::startPay()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Collections.IEnumerator PurchasingManager::ProcessPayData(System.String)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::ApplePayRequest(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::OnInitializeFailed(UnityEngine.Purchasing.InitializationFailureReason,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::OnInitializeFailed(UnityEngine.Purchasing.InitializationFailureReason)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void PurchasingManager::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AndroidVibration::Awake()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AndroidVibration::CVibrate(System.Int32)] Because of your defined Method obfuscation settings.
@@ -15099,11 +17975,12 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic/<>c::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic/<>c__DisplayClass16_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic/<>c__DisplayClass16_0::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic/<>c__DisplayClass17_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic/<>c__DisplayClass17_0::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic::Awake()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic::Start()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic::Init(System.Int32)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic::OnClick()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] DG.Tweening.Sequence SGame.ScrewsLogic::FlyToTarget(UnityEngine.Transform,UnityEngine.Events.UnityAction)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] DG.Tweening.Core.TweenerCore`3 SGame.ScrewsLogic::ShowAnim()] Because of your defined Method obfuscation settings.
@@ -15111,6 +17988,52 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic::OnRecycle()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void SGame.ScrewsLogic::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String AppsFlyerSDK.AFAdRevenueData::get_monetizationNetwork()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] AppsFlyerSDK.MediationNetwork AppsFlyerSDK.AFAdRevenueData::get_mediationNetwork()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String AppsFlyerSDK.AFAdRevenueData::get_currencyIso4217Code()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Double AppsFlyerSDK.AFAdRevenueData::get_eventRevenue()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AFAdRevenueData::.ctor(System.String,AppsFlyerSDK.MediationNetwork,System.String,System.Double)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AFAdRevenueData::.ctor(System.String,AppsFlyerSDK.MediationNetwork,System.String,System.Double)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource::PurchaseRevenueAdditionalParametersForProducts(System.Collections.Generic.HashSet`1,System.Collections.Generic.HashSet`1)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2::PurchaseRevenueAdditionalParametersStoreKit2ForProducts(System.Collections.Generic.HashSet`1,System.Collections.Generic.HashSet`1)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge::RegisterUnityPurchaseRevenueParamsCallback(System.Func`3)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge::RegisterUnityPurchaseRevenueParamsCallbackSK2(System.Func`3)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge::RegisterDataSource(AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge::RegisterDataSourceStoreKit2(AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Collections.Generic.Dictionary`2 AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge::GetAdditionalParametersForAndroid(System.Collections.Generic.HashSet`1,System.Collections.Generic.HashSet`1)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge::GetAdditionalParameters(System.String,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge::GetAdditionalParametersSK2(System.String,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseRevenueBridge::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String AppsFlyerSDK.UnityPurchaseRevenueBridgeProxy::getAdditionalParameters(System.String,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] AppsFlyerSDK.AppsFlyerPurchaseConnector AppsFlyerSDK.AppsFlyerPurchaseConnector::get_Instance()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::Awake()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::init(UnityEngine.MonoBehaviour,AppsFlyerSDK.Store)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::build()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::startObservingTransactions()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::stopObservingTransactions()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::setIsSandbox(System.Boolean)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::setPurchaseRevenueValidationListeners(System.Boolean)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::setAutoLogPurchaseRevenue(AppsFlyerSDK.AppsFlyerAutoLogPurchaseRevenueOptions[])] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::setPurchaseRevenueDataSource(AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSource)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::setPurchaseRevenueDataSourceStoreKit2(AppsFlyerSDK.IAppsFlyerPurchaseRevenueDataSourceStoreKit2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::setStoreKitVersion(AppsFlyerSDK.StoreKitVersion)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::logConsumableTransaction(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::_startObservingTransactions()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::_stopObservingTransactions()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::_setIsSandbox(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::_setPurchaseRevenueDelegate()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::_setPurchaseRevenueDataSource(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::_setAutoLogPurchaseRevenue(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::_initPurchaseConnector(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::_setStoreKitVersion(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::_logConsumableTransaction(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.AppsFlyerPurchaseConnector::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.IAppsFlyerPurchaseValidation::didReceivePurchaseRevenueValidationInfo(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void AppsFlyerSDK.IAppsFlyerPurchaseValidation::didReceivePurchaseRevenueError(System.String)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String FutureCore.Base64EncodeUtil::Base64Encode(System.String)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String FutureCore.Base64EncodeUtil::Base64Decode(System.String)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String FutureCore.Base64EncodeUtil::Base64Encode(System.Text.Encoding,System.String)] Because of your defined Method obfuscation settings.
@@ -15659,25 +18582,21 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean ScrewsMaster.PlayerPrefsKit::ReadBool(System.String,System.Boolean)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String ScrewsMaster.PlayerPrefsKit::ReadString(System.String)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean ScrewsMaster.PlayerPrefsKit::HasKey(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1/d__3::.ctor(System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1/d__3::.ctor(System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean ScrewsMaster.AppsFlyerObjectScript1/d__3::MoveNext()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1::Start()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Collections.IEnumerator ScrewsMaster.AppsFlyerObjectScript1::loopWaitInitAf()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1::onConversionDataSuccess(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1::onConversionDataFail(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1::onAppOpenAttribution(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1::onAppOpenAttributionFailure(System.String)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.AppsFlyerObjectScript1::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit/<>c::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit/<>c__DisplayClass2_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit/<>c__DisplayClass2_0::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit/<>c__DisplayClass7_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit/<>c__DisplayClass7_0::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit::Init()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean ScrewsMaster.MaxADKit::CheckInterstitialReady()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit::ShowInterstitial(System.String,UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit::InitializeInterstitialAds()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean ScrewsMaster.MaxADKit::CheckRewardedReady()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit::ShowVideo(System.String,UnityEngine.Events.UnityAction`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit::InitializeRewardedAds()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.MaxADKit::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -16181,6 +19100,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.NetworkManager::Init()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.NetworkManager::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.NetworkManager::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.NetworkManager::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.PreferencesMgr::Init()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.PreferencesMgr::StartUp()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.PreferencesMgr::DisposeBefore()] Because of your defined Method obfuscation settings.
@@ -16750,6 +19670,9 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.H5Model::OnDispose()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.H5Model::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.H5Model::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.H5UI/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.H5UI/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.H5UI/<>c::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.H5UI/<>c__DisplayClass28_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.H5UI/<>c__DisplayClass28_0::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.H5UI/<>c__DisplayClass37_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
@@ -18216,107 +21139,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] ScrewsMaster.GameQuestionData ScrewsMaster.QuestionBankKit::GetQuestionTable(ScrewsMaster.QuestionBank,System.Boolean)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.QuestionBankKit::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.QuestionBankKit::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebAutoRefreshUrl::.ctor(System.Int32,System.Int32,System.Int32,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebAutoRefreshUrl::.ctor(System.Int32,System.Int32,System.Int32,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Single ScrewsMaster.WebAutoRefreshUrl::get_OrderValue()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 ScrewsMaster.WebAutoRefreshUrl::get_Id()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 ScrewsMaster.WebAutoRefreshUrl::get_Probability()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 ScrewsMaster.WebAutoRefreshUrl::get_CTHideCount()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebAutoRefreshUrl::SetCurWebViewTop()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebAutoRefreshUrl::RefreshUrl(System.Boolean,ScrewsMaster.WebUIType)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebAutoRefreshUrl::SetOrderValue(System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebAutoRefreshUrl::StartTime()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebAutoRefreshUrl::StopSecondeEvent()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughUtil::WebThroughInit()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughUtil::WebThroughCreate(ScrewsMaster.H5WebThroughType,FairyGUI.GObject)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughUtil::WebThroughClick(ScrewsMaster.H5WebThroughType,FairyGUI.GObject)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughUtil::WebThroughDisable(ScrewsMaster.H5WebThroughType,FairyGUI.GObject)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughUtil::WebThroughRefreshPos(ScrewsMaster.H5WebThroughType,FairyGUI.GObject)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughUtil::WebThroughRefreshData(ScrewsMaster.WebViewMgr/GameUrlInfo)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughUtil::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughUtil::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughUtil::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMaskUtil::UpdateWebViewShieldEvent(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMaskUtil::CloseWebViewShieldEvent(System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMaskUtil::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMaskUtil::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughBase::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughBase::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughBase::OnCreate()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughBase::OnClickEvent()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughBase::OnDisable()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughBase::OnRefreshThrougth(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughBase::OnRefreshPos(System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughBase::OnRefreshThroughState()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughBase::OnRefreshThroughToday()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughBase::OnCheckCanThrough(System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String ScrewsMaster.WebThroughBase::GetKey(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughFly::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughFly::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughFly::OnCreate()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughFly::OnClickEvent()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughFly::OnRefreshThrougth(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughHide::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughHide::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughHide::OnCreate()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughHide::OnClickEvent()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughHide::OnRefreshThrougth(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughOnline::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughOnline::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughOnline::OnCreate()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughOnline::OnClickEvent()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughOnline::OnRefreshThrougth(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughPop::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughPop::.ctor(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughPop::OnCreate()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughPop::OnClickEvent()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughPop::OnDisable()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebThroughPop::OnRefreshThrougth(System.Int32,System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewCtrl::OnInit()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewCtrl::OnDispose()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewCtrl::AddListener()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewCtrl::RemoveListener()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewCtrl::AddServerListener()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewCtrl::RemoveServerListener()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewCtrl::OnAdaptiveWebViewByShowLayer()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewCtrl::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewCtrl::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr/GameUrlInfo::.ctor(ScrewsMaster.GameUrls)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr/GameUrlInfo::.ctor(ScrewsMaster.GameUrls)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr/<>c::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr/<>c__DisplayClass36_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr/<>c__DisplayClass36_0::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr/<>c__DisplayClass40_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr/<>c__DisplayClass40_0::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr/<>c__DisplayClass59_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr/<>c__DisplayClass59_0::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] ScrewsMaster.WebUIType ScrewsMaster.WebViewMgr::get_WebUIType()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr::set_WebUIType(ScrewsMaster.WebUIType)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 ScrewsMaster.WebViewMgr::get_WebViewID_ShowLayer()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 ScrewsMaster.WebViewMgr::get_WebViewID_HideLayer()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 ScrewsMaster.WebViewMgr::get_Reg_day()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String ScrewsMaster.WebViewMgr::get_Reg_country()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] ScrewsMaster.WebViewMgr/UserType ScrewsMaster.WebViewMgr::get_CurUserType()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr::Init()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr::OnGiftSwitchChange()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr::RefreshWebViewShowStart()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr::RefreshWebViewHideStart()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr::RefreshWebViewHideMaxLayerByCT()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Int32 ScrewsMaster.WebViewMgr::GetCurThrougthMax(System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr::SetCurThrougthMax(System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] ScrewsMaster.WebViewMgr/GameUrlInfo ScrewsMaster.WebViewMgr::GetGameUrlInfo(ScrewsMaster.WebViewMgr/WebType,System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] ScrewsMaster.WebViewMgr/GameUrlInfo ScrewsMaster.WebViewMgr::GetGameUrlInfo(System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean ScrewsMaster.WebViewMgr::get_CanCreateCTMask()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr::SetCTMaskRoot()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] UnityEngine.RectTransform ScrewsMaster.WebViewMgr::GetCTMask(System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] UnityEngine.RectTransform ScrewsMaster.WebViewMgr::GetCTMaskRefreshPos(System.Int32)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr::SetLoadUrlTimes(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.String ScrewsMaster.WebViewMgr::GetLoadUrl(ScrewsMaster.WebViewMgr/UserType,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] ScrewsMaster.WebViewMgr/GameUrlInfo ScrewsMaster.WebViewMgr::GetH5GameUrlInfo()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.WebViewMgr::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] ScrewsMaster.Saveobject ScrewsMaster.SaveData::GetSaveobject()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Void ScrewsMaster.SaveData::saveDataFunc()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[Assembly-CSharp] System.Boolean ScrewsMaster.SaveData::battlepassred()] Because of your defined Method obfuscation settings.
@@ -24137,6 +26959,361 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[spine-unity] System.Collections.Generic.KeyValuePair`2[] Spine.Collections.OrderedDictionaryDebugView`2::get_Items()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[spine-unity] Spine.Collections.OrderedDictionary`2 Spine.Collections.CollectionExtensions::ToOrderedDictionary(System.Collections.Generic.IEnumerable`1,System.Func`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[spine-unity] Spine.Collections.OrderedDictionary`2 Spine.Collections.CollectionExtensions::ToOrderedDictionary(System.Collections.Generic.IEnumerable`1,System.Func`2,System.Collections.Generic.IEqualityComparer`1)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Analyse Member...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find MemberReferences...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Method References in Modules...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Field References in Instructions...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Find Member to skip...
+[Info][OPS.OBF][OnAnalyse_Assemblies] [BigoAds] Skip Methods...
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper/Task::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper/Task::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper/Task::run()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper/DestryAdTask::.ctor(UnityEngine.AndroidJavaObject)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper/DestryAdTask::.ctor(UnityEngine.AndroidJavaObject)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper/DestryAdTask::run()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper::ShowBannerAd(UnityEngine.AndroidJavaObject)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper::ShowBannerAd(UnityEngine.AndroidJavaObject,BigoAds.Scripts.Api.Constant.BigoPosition)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper::ShowNativeAd(UnityEngine.AndroidJavaObject)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper::RemoveAdView()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper::ShowNativeAd(UnityEngine.AndroidJavaObject,BigoAds.Scripts.Api.Constant.BigoPosition)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper::SetViewPosition(UnityEngine.AndroidJavaObject,BigoAds.Scripts.Api.Constant.BigoPosition)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper::DestroyAd(UnityEngine.AndroidJavaObject)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper::PostToAndroidMainThread(AdHelper/Task)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void AdHelper::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void UnitySourceGeneratedAssemblyMonoScriptTypes_v1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void UnitySourceGeneratedAssemblyMonoScriptTypes_v1::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.ISDK BigoAds.Scripts.Platforms.iOS.IOSClientFactory::BuildSDKClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.IBannerAd BigoAds.Scripts.Platforms.iOS.IOSClientFactory::BuildBannerAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.INativeAd BigoAds.Scripts.Platforms.iOS.IOSClientFactory::BuildNativeAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.IInterstitialAd BigoAds.Scripts.Platforms.iOS.IOSClientFactory::BuildInterstitialAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.ISplashAd BigoAds.Scripts.Platforms.iOS.IOSClientFactory::BuildSplashAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.IRewardedAd BigoAds.Scripts.Platforms.iOS.IOSClientFactory::BuildRewardedAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.IPopupAd BigoAds.Scripts.Platforms.iOS.IOSClientFactory::BuildPopupAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.IOSClientFactory::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.IOSClientFactory::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd::Load(System.String,BigoAds.Scripts.Api.BigoBannerRequest)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd::SetPosition(BigoAds.Scripts.Api.Constant.BigoPosition)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd::BigoIOS_loadBannerAdData(System.IntPtr,System.String,System.String,System.Int32,System.Int32,System.Int32,System.Int32,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd::BigoIOS_SetBannerAdPosition(System.IntPtr,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int32 BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd::BigoIOS_getScreenWidth()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int32 BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd::BigoIOS_getScreenHeight()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int32 BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd::BigoIOS_getScreenSafeTop()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int32 BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd::BigoIOS_getScreenSafeBottom()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityBannerAd::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate::Invoke(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate::Invoke(System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate::Invoke(System.IntPtr,System.Int32,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate::Invoke(System.IntPtr,System.Int32,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate::BeginInvoke(System.IntPtr,System.Int32,System.String,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate::BeginInvoke(System.IntPtr,System.Int32,System.String,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate::Invoke(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate::Invoke(System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate::Invoke(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate::Invoke(System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate::Invoke(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate::Invoke(System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate::Invoke(System.IntPtr,System.Int32,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate::Invoke(System.IntPtr,System.Int32,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate::BeginInvoke(System.IntPtr,System.Int32,System.String,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate::BeginInvoke(System.IntPtr,System.Int32,System.String,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::add_OnLoad(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::remove_OnLoad(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::add_OnLoadFailed(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::remove_OnLoadFailed(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::add_OnAdShowed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::remove_OnAdShowed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::add_OnAdClicked(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::remove_OnAdClicked(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::add_OnAdDismissed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::remove_OnAdDismissed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::add_OnAdError(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::remove_OnAdError(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::Load(System.String,BigoAds.Scripts.Api.BigoRequest)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::LoadAdData(System.String,BigoAds.Scripts.Api.BigoRequest)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::IsLoaded()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::Show()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::IsExpired()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::Destroy()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::IsClientBidding()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::GetExtraInfo(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Double BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::getPrice()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::notifyWin(System.Double,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::notifyLoss(System.Double,System.String,BigoAds.Scripts.Api.Constant.BGAdLossReason)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::LOGWithMessage(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::LOGWithMessage(System.String,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::GetUnityAd(System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::BigoIOS_loadAdData(System.Int32,System.IntPtr,System.String,System.String,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::BigoIOS_showAd(System.Int32,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::BigoIOS_destroyAd(System.Int32,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::BigoIOS_IsExpired(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::BigoIOS_IsClientBidding(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Double BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::BigoIOS_GetPrice(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::BigoIOS_NotifyWin(System.IntPtr,System.Double,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::BigoIOS_NotifyLoss(System.IntPtr,System.Double,System.String,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::cs_adDidLoadCallback(System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::cs_adLoadFailCallBack(System.IntPtr,System.Int32,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::cs_adDidShowCallback(System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::cs_adDidClickCallback(System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::cs_adDidDismissCallback(System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::cs_adDidErrorCallBack(System.IntPtr,System.Int32,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IntPtr BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityConfig::getInternalConfig()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IntPtr BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityConfig::BigoIOS_config(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityConfig::BigoIOS_configSetInfo(System.IntPtr,System.Boolean,System.Int32,System.Int32,System.Int64)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityConfig::BigoIOS_configSetExtra(System.IntPtr,System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityConfig::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityConfig::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate::Invoke(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate::Invoke(System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::Init(BigoAds.Scripts.Api.BigoAdConfig,BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::IsInitSuccess()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::GetSDKVersion()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::GetSDKVersionName()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::SetUserConsent(BigoAds.Scripts.Api.Constant.ConsentOptions,System.Boolean)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::AddExtraHost(System.String,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::BigoIOS_initSDK(System.IntPtr,System.IntPtr,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk/SuccessCallbackDelegate)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::BigoIOS_sdkInitializationState()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::BigoIOS_sdkVersion()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::BigoIOS_sdkVersionName()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::BigoIOS_setConsentGDPR(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::BigoIOS_setConsentCCPA(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::BigoIOS_setConsentLGPD(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::BigoIOS_setConsentCOPPA(System.Boolean)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::BigoIOS_addExtraHost(System.String,System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySdk::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityTools::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityTools::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityTools::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityinterstitialAd::Load(System.String,BigoAds.Scripts.Api.BigoInterstitialRequest)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityinterstitialAd::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityinterstitialAd::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd::Load(System.String,BigoAds.Scripts.Api.BigoNativeRequest)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd::SetPosition(BigoAds.Scripts.Api.Constant.BigoPosition)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd::BigoIOS_loadNativeAdData(System.IntPtr,System.String,System.String,System.Int32,System.Int32,System.Int32,System.Int32,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd::BigoIOS_SetNativeAdPosition(System.IntPtr,System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int32 BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd::BigoIOS_getScreenWidth()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int32 BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd::BigoIOS_getScreenHeight()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int32 BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd::BigoIOS_getScreenSafeTop()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int32 BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd::BigoIOS_getScreenSafeBottom()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityNativeAd::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitypopupAd::Load(System.String,BigoAds.Scripts.Api.BigoPopupRequest)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitypopupAd::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitypopupAd::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate::Invoke(System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate::Invoke(System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate::BeginInvoke(System.IntPtr,System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd::add_OnUserEarnedReward(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd::remove_OnUserEarnedReward(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd::Load(System.String,BigoAds.Scripts.Api.BigoRewardedRequest)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd::BigoIOS_loadRewardedAdData(System.IntPtr,System.String,System.String,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidLoadCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adLoadFailCallBack_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidShowCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidClickCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidDismissCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoIOSBaseAd/adDidErrorCallback_delegate,BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd/adDidEarnRewardCallback_delegate)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnityRewardedAd::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySplashAd::Load(System.String,BigoAds.Scripts.Api.BigoSplashRequest)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySplashAd::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Platforms.iOS.Adapter.BigoAd.BigoUnitySplashAd::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid::.ctor(BigoAds.Scripts.Common.IBigoAd`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid::.ctor(BigoAds.Scripts.Common.IBigoAd`1)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Double BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid::getPrice()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid::notifyWin(System.Double,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid::notifyLoss(System.Double,System.String,BigoAds.Scripts.Api.Constant.BGAdLossReason)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass35_0::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1/<>c__DisplayClass39_0::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::add_OnLoad(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::remove_OnLoad(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::add_OnLoadFailed(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::remove_OnLoadFailed(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::add_OnAdShowed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::remove_OnAdShowed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::add_OnAdClicked(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::remove_OnAdClicked(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::add_OnAdDismissed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::remove_OnAdDismissed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::add_OnAdError(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::remove_OnAdError(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Common.BigoBaseAd`1::get_CallbackOnMainThread()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::set_CallbackOnMainThread(System.Boolean)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::.ctor(System.String,BigoAds.Scripts.Common.IBigoAd`1)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::.ctor(System.String,BigoAds.Scripts.Common.IBigoAd`1)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::Load(T)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::Show()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::DestroyAd()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Common.BigoBaseAd`1::IsLoaded()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Common.BigoBaseAd`1::IsExpired()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Common.BigoBaseAd`1::GetExtraInfo(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoBaseAd`1::InvokeOnLoadFailed(System.Int32,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.BigoBaseAd`1/BigoAdBid BigoAds.Scripts.Common.BigoBaseAd`1::GetBid()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoDispatcher::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoDispatcher::PostTask(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoDispatcher::CreateInstance()] Because of compatibility component: Unity - Compatibility : Has RuntimeInitializeOnLoadMethodAttribute.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoDispatcher::OnDestroy()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoDispatcher::Update()] Because of compatibility component: Unity - Compatibility : Is MonoBehaviour Method.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoDispatcher::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.BigoDispatcher::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBannerAd::SetPosition(BigoAds.Scripts.Api.Constant.BigoPosition)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::add_OnLoad(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::remove_OnLoad(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::add_OnLoadFailed(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::remove_OnLoadFailed(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::add_OnAdShowed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::remove_OnAdShowed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::add_OnAdClicked(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::remove_OnAdClicked(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::add_OnAdDismissed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::remove_OnAdDismissed(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::add_OnAdError(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::remove_OnAdError(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::Load(System.String,T)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Common.IBigoAd`1::IsLoaded()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Common.IBigoAd`1::IsExpired()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::Show()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IBigoAd`1::Destroy()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Common.IBigoAd`1::IsClientBidding()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Common.IBigoAd`1::GetExtraInfo(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Double BigoAds.Scripts.Common.IClientBidding::getPrice()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IClientBidding::notifyWin(System.Double,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IClientBidding::notifyLoss(System.Double,System.String,BigoAds.Scripts.Api.Constant.BGAdLossReason)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.ISDK BigoAds.Scripts.Common.IClientFactory::BuildSDKClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.IBannerAd BigoAds.Scripts.Common.IClientFactory::BuildBannerAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.INativeAd BigoAds.Scripts.Common.IClientFactory::BuildNativeAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.IInterstitialAd BigoAds.Scripts.Common.IClientFactory::BuildInterstitialAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.IPopupAd BigoAds.Scripts.Common.IClientFactory::BuildPopupAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.ISplashAd BigoAds.Scripts.Common.IClientFactory::BuildSplashAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Common.IRewardedAd BigoAds.Scripts.Common.IClientFactory::BuildRewardedAdClient()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.INativeAd::SetPosition(BigoAds.Scripts.Api.Constant.BigoPosition)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IRewardedAd::add_OnUserEarnedReward(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.IRewardedAd::remove_OnUserEarnedReward(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.ISDK::Init(BigoAds.Scripts.Api.BigoAdConfig,BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Common.ISDK::IsInitSuccess()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Common.ISDK::GetSDKVersion()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Common.ISDK::GetSDKVersionName()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.ISDK::SetUserConsent(BigoAds.Scripts.Api.Constant.ConsentOptions,System.Boolean)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Common.ISDK::AddExtraHost(System.String,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder BigoAds.Scripts.Api.BigoAdConfig/Builder::SetAppId(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder BigoAds.Scripts.Api.BigoAdConfig/Builder::SetDebugLog(System.Boolean)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder BigoAds.Scripts.Api.BigoAdConfig/Builder::SetChannel(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder BigoAds.Scripts.Api.BigoAdConfig/Builder::SetAge(System.Int32)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder BigoAds.Scripts.Api.BigoAdConfig/Builder::SetGender(BigoAds.Scripts.Api.Constant.BGAdGender)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder BigoAds.Scripts.Api.BigoAdConfig/Builder::SetActivatedTime(System.Int64)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig/Builder BigoAds.Scripts.Api.BigoAdConfig/Builder::SetExtra(System.String,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Api.BigoAdConfig BigoAds.Scripts.Api.BigoAdConfig/Builder::Build()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdConfig/Builder::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdConfig/Builder::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdConfig::.ctor(BigoAds.Scripts.Api.BigoAdConfig/Builder)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate::.ctor(System.Object,System.IntPtr)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate::.ctor(System.Object,System.IntPtr)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate::Invoke()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate::Invoke()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate::BeginInvoke(System.AsyncCallback,System.Object)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.IAsyncResult BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate::BeginInvoke(System.AsyncCallback,System.Object)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate::EndInvoke(System.IAsyncResult)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate::EndInvoke(System.IAsyncResult)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk/<>c::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk/<>c::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk/<>c::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk::add_OnInitFinish(BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk::remove_OnInitFinish(BigoAds.Scripts.Api.BigoAdSdk/InitResultDelegate)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk::Initialize(BigoAds.Scripts.Api.BigoAdConfig)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Boolean BigoAds.Scripts.Api.BigoAdSdk::IsInitSuccess()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Api.BigoAdSdk::GetSDKVersion()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Api.BigoAdSdk::GetSDKVersionName()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk::SetUserConsent(BigoAds.Scripts.Api.Constant.ConsentOptions,System.Boolean)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoAdSdk::AddExtraHost(System.String,System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoBannerAd::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoBannerAd::.ctor(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoBannerAd::SetPosition(BigoAds.Scripts.Api.Constant.BigoPosition)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Api.Constant.BigoBannerSize BigoAds.Scripts.Api.BigoBannerRequest::get_Size()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Api.Constant.BigoPosition BigoAds.Scripts.Api.BigoBannerRequest::get_Position()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoBannerRequest::.ctor(BigoAds.Scripts.Api.Constant.BigoBannerSize,BigoAds.Scripts.Api.Constant.BigoPosition)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoBannerRequest::.ctor(BigoAds.Scripts.Api.Constant.BigoBannerSize,BigoAds.Scripts.Api.Constant.BigoPosition)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoInterstitialAd::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoInterstitialAd::.ctor(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoInterstitialRequest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoInterstitialRequest::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoNativeAd::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoNativeAd::.ctor(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoNativeAd::SetPosition(BigoAds.Scripts.Api.Constant.BigoPosition)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoNativeRequest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoNativeRequest::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoPopupAd::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoPopupAd::.ctor(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoPopupRequest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoPopupRequest::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Api.BigoRequest::get_ExtraInfoJson()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRequest::set_ExtraInfoJson(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int32 BigoAds.Scripts.Api.BigoRequest::get_Age()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRequest::set_Age(System.Int32)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] BigoAds.Scripts.Api.Constant.BGAdGender BigoAds.Scripts.Api.BigoRequest::get_Gender()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRequest::set_Gender(BigoAds.Scripts.Api.Constant.BGAdGender)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int64 BigoAds.Scripts.Api.BigoRequest::get_ActivatedTime()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRequest::set_ActivatedTime(System.Int64)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.String BigoAds.Scripts.Api.BigoRequest::ToJson()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRequest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRequest::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRewardedAd::add_OnUserEarnedReward(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRewardedAd::remove_OnUserEarnedReward(System.Action)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRewardedAd::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRewardedAd::.ctor(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRewardedRequest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoRewardedRequest::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoSplashAd::.ctor(System.String)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoSplashAd::.ctor(System.String)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoSplashRequest::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.BigoSplashRequest::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BigoBannerSize::get_Width()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Int32 BigoAds.Scripts.Api.Constant.BigoBannerSize::get_Height()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.Constant.BigoBannerSize::.ctor(System.Int32,System.Int32)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.Constant.BigoBannerSize::.ctor(System.Int32,System.Int32)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[BigoAds] System.Void BigoAds.Scripts.Api.Constant.BigoBannerSize::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Analyse Member...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find MemberReferences...
[Info][OPS.OBF][OnAnalyse_Assemblies] [MaxSdk.Scripts] Find Method References in Modules...
@@ -24160,92 +27337,15 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.String MaxSdk::get_Version()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdk::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdk::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid/BackgroundCallbackProxy::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid/BackgroundCallbackProxy::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid/BackgroundCallbackProxy::onEvent(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::.cctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::InitializeSdk(System.String[])] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkAndroid::IsInitialized()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetUserId(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetSegmentCollection(MaxSegmentCollection)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Collections.Generic.List`1 MaxSdkAndroid::GetAvailableMediatedNetworks()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::ShowMediationDebugger()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::ShowCreativeDebugger()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.String MaxSdkAndroid::GetAdValue(System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] MaxSdkBase/SdkConfiguration MaxSdkAndroid::GetSdkConfiguration()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetHasUserConsent(System.Boolean)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkAndroid::HasUserConsent()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkAndroid::IsUserConsentSet()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetDoNotSell(System.Boolean)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkAndroid::IsDoNotSell()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkAndroid::IsDoNotSellSet()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::CreateBanner(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::CreateBanner(System.String,System.Single,System.Single)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::LoadBanner(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetBannerPlacement(System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::StartBannerAutoRefresh(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::StopBannerAutoRefresh(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::UpdateBannerPosition(System.String,MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::UpdateBannerPosition(System.String,System.Single,System.Single)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetBannerWidth(System.String,System.Single)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::ShowBanner(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::DestroyBanner(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::HideBanner(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetBannerBackgroundColor(System.String,UnityEngine.Color)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetBannerExtraParameter(System.String,System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetBannerLocalExtraParameter(System.String,System.String,System.Object)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetBannerCustomData(System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] UnityEngine.Rect MaxSdkAndroid::GetBannerLayout(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::CreateMRec(System.String,MaxSdkBase/AdViewPosition)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::CreateMRec(System.String,System.Single,System.Single)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::LoadMRec(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetMRecPlacement(System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::StartMRecAutoRefresh(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::StopMRecAutoRefresh(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::UpdateMRecPosition(System.String,MaxSdkBase/AdViewPosition)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::UpdateMRecPosition(System.String,System.Single,System.Single)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::ShowMRec(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::DestroyMRec(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::HideMRec(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetMRecExtraParameter(System.String,System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetMRecLocalExtraParameter(System.String,System.String,System.Object)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetMRecCustomData(System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] UnityEngine.Rect MaxSdkAndroid::GetMRecLayout(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::LoadInterstitial(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkAndroid::IsInterstitialReady(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::ShowInterstitial(System.String,System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetInterstitialExtraParameter(System.String,System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetInterstitialLocalExtraParameter(System.String,System.String,System.Object)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::LoadAppOpenAd(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkAndroid::IsAppOpenAdReady(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::ShowAppOpenAd(System.String,System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetAppOpenAdExtraParameter(System.String,System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetAppOpenAdLocalExtraParameter(System.String,System.String,System.Object)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::LoadRewardedAd(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkAndroid::IsRewardedAdReady(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::ShowRewardedAd(System.String,System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetRewardedAdExtraParameter(System.String,System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetRewardedAdLocalExtraParameter(System.String,System.String,System.Object)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::LoadRewardedInterstitialAd(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkAndroid::IsRewardedInterstitialAdReady(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::ShowRewardedInterstitialAd(System.String,System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetRewardedInterstitialAdExtraParameter(System.String,System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetRewardedInterstitialAdLocalExtraParameter(System.String,System.String,System.Object)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::TrackEvent(System.String,System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetMuted(System.Boolean)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkAndroid::IsMuted()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetVerboseLogging(System.Boolean)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkAndroid::IsVerboseLoggingEnabled()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetCreativeDebuggerEnabled(System.Boolean)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetTestDeviceAdvertisingIdentifiers(System.String[])] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetExceptionHandlerEnabled(System.Boolean)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetExtraParameter(System.String,System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] MaxSdkBase/SafeAreaInsets MaxSdkAndroid::GetSafeAreaInsets()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::SetSdkKey(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] MaxSdkBase/ConsentDialogState MaxSdkAndroid::GetConsentDialogState()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] MaxSdkBase/AdInfo MaxSdkAndroid::GetAdInfo(System.String)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkAndroid::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] MaxSdkBase/AdViewPosition MaxSdkBase/AdViewConfiguration::get_Position()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Single MaxSdkBase/AdViewConfiguration::get_XCoordinate()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Single MaxSdkBase/AdViewConfiguration::get_YCoordinate()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkBase/AdViewConfiguration::get_IsAdaptive()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkBase/AdViewConfiguration::set_IsAdaptive(System.Boolean)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkBase/AdViewConfiguration::.ctor(MaxSdkBase/AdViewPosition)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkBase/AdViewConfiguration::.ctor(MaxSdkBase/AdViewPosition)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkBase/AdViewConfiguration::.ctor(System.Single,System.Single)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkBase/AdViewConfiguration::.ctor(System.Single,System.Single)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Boolean MaxSdkBase/SdkConfiguration::get_IsSuccessfullyInitialized()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.String MaxSdkBase/SdkConfiguration::get_CountryCode()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] MaxSdkBase/AppTrackingStatus MaxSdkBase/SdkConfiguration::get_AppTrackingStatus()] Because of your defined Method obfuscation settings.
@@ -24297,6 +27397,7 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.String MaxSdkBase/MediatedNetworkInfo::get_AdapterClassName()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.String MaxSdkBase/MediatedNetworkInfo::get_AdapterVersion()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.String MaxSdkBase/MediatedNetworkInfo::get_SdkVersion()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] MaxSdkBase/InitializationStatus MaxSdkBase/MediatedNetworkInfo::get_InitializationStatus()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkBase/MediatedNetworkInfo::.ctor(System.Collections.Generic.IDictionary`2)] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkBase/MediatedNetworkInfo::.ctor(System.Collections.Generic.IDictionary`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.String MaxSdkBase/MediatedNetworkInfo::ToString()] Because of your defined Method obfuscation settings.
@@ -24328,7 +27429,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.String MaxSdkBase::SerializeLocalExtraParameterValue(System.Object)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkBase::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkBase::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.String AdPositionExtenstion::ToSnakeCaseString(MaxSdkBase/BannerPosition)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.String AdPositionExtenstion::ToSnakeCaseString(MaxSdkBase/AdViewPosition)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::add_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::remove_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
@@ -24342,12 +27442,12 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::remove_OnAdClickedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::add_OnAdRevenuePaidEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::remove_OnAdRevenuePaidEvent(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::add_OnExpiredAdReloadedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::remove_OnExpiredAdReloadedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::add_OnAdReviewCreativeIdGeneratedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::remove_OnAdReviewCreativeIdGeneratedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::add_OnAdHiddenEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::remove_OnAdHiddenEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Interstitial::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::add_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::remove_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::add_OnAdLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
@@ -24360,10 +27460,10 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::remove_OnAdClickedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::add_OnAdRevenuePaidEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::remove_OnAdRevenuePaidEvent(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::add_OnExpiredAdReloadedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::remove_OnExpiredAdReloadedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::add_OnAdHiddenEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::remove_OnAdHiddenEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/AppOpen::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::add_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::remove_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::add_OnAdLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
@@ -24376,34 +27476,14 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::remove_OnAdClickedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::add_OnAdRevenuePaidEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::remove_OnAdRevenuePaidEvent(System.Action`2)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::add_OnExpiredAdReloadedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::remove_OnExpiredAdReloadedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::add_OnAdReviewCreativeIdGeneratedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::remove_OnAdReviewCreativeIdGeneratedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::add_OnAdReceivedRewardEvent(System.Action`3)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::remove_OnAdReceivedRewardEvent(System.Action`3)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::add_OnAdHiddenEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::remove_OnAdHiddenEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Rewarded::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::add_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::remove_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::add_OnAdLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::remove_OnAdLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::add_OnAdDisplayedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::remove_OnAdDisplayedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::add_OnAdDisplayFailedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::remove_OnAdDisplayFailedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::add_OnAdClickedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::remove_OnAdClickedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::add_OnAdRevenuePaidEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::remove_OnAdRevenuePaidEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::add_OnAdReviewCreativeIdGeneratedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::remove_OnAdReviewCreativeIdGeneratedEvent(System.Action`3)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::add_OnAdReceivedRewardEvent(System.Action`3)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::remove_OnAdReceivedRewardEvent(System.Action`3)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::add_OnAdHiddenEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::remove_OnAdHiddenEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/RewardedInterstitial::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Banner::add_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Banner::remove_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Banner::add_OnAdLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
@@ -24418,8 +27498,6 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Banner::remove_OnAdExpandedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Banner::add_OnAdCollapsedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Banner::remove_OnAdCollapsedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Banner::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/Banner::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/MRec::add_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/MRec::remove_OnAdLoadedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/MRec::add_OnAdLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
@@ -24434,64 +27512,16 @@
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/MRec::remove_OnAdExpandedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/MRec::add_OnAdCollapsedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/MRec::remove_OnAdCollapsedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/MRec::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/MRec::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass155_0`1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass155_0`1::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass156_0`2::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass156_0`2::.ctor()] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass157_0`3::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass157_0`3::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass15_0`1::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass15_0`1::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass16_0`2::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass16_0`2::.ctor()] Because of your defined Method obfuscation settings.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass17_0`3::.ctor()] Because of compatibility component: .Net Framework - Compatibility : Is Special.
+[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks/<>c__DisplayClass17_0`3::.ctor()] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnSdkInitializedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnSdkInitializedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnApplicationStateChangedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnApplicationStateChangedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnBannerAdLoadedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnBannerAdLoadedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnBannerAdLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnBannerAdLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnBannerAdClickedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnBannerAdClickedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnBannerAdExpandedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnBannerAdExpandedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnBannerAdCollapsedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnBannerAdCollapsedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnMRecAdLoadedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnMRecAdLoadedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnMRecAdLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnMRecAdLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnMRecAdClickedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnMRecAdClickedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnMRecAdExpandedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnMRecAdExpandedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnMRecAdCollapsedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnMRecAdCollapsedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnInterstitialLoadedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnInterstitialLoadedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnInterstitialLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnInterstitialLoadFailedEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnInterstitialHiddenEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnInterstitialHiddenEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnInterstitialDisplayedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnInterstitialDisplayedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnInterstitialAdFailedToDisplayEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnInterstitialAdFailedToDisplayEvent(System.Action`2)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnInterstitialClickedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnInterstitialClickedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnRewardedAdLoadedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::remove_OnRewardedAdLoadedEvent(System.Action`1)] Because of your defined Method obfuscation settings.
-[Info][OPS.OBF][OnAnalyse_Assemblies] Skip Method [[MaxSdk.Scripts] System.Void MaxSdkCallbacks::add_OnRewardedAdLoadFailedEvent(System.Action`2