diff --git a/Classes_cocos/AppDelegate.mm b/Classes_cocos/AppDelegate.mm index 16e86fa..a55f747 100755 --- a/Classes_cocos/AppDelegate.mm +++ b/Classes_cocos/AppDelegate.mm @@ -66,11 +66,11 @@ bool AppDelegate::applicationDidFinishLaunching() se->start(); se::AutoHandleScope hs; - jsb_run_script("Data/js/jsb-adapter/jsb-builtin.js"); - jsb_run_script("Data/js/jcwallet.js"); - jsb_run_script("Data/js/platform.js"); - jsb_run_script("Data/js/main.js"); - jsb_run_script("Data/js/wallet.js"); + jsb_run_script("js/jsb-adapter/jsb-builtin.js"); + jsb_run_script("js/jcwallet.js"); + jsb_run_script("js/platform.js"); + jsb_run_script("js/main.js"); + jsb_run_script("js/wallet.js"); se->addAfterCleanupHook([]() { JSBClassType::destroy(); }); diff --git a/Libraries/AppsFlyer/Plugins/iOS/AFUnityUtils.mm b/Libraries/AppsFlyer/Plugins/iOS/AFUnityUtils.mm new file mode 100644 index 0000000..8e55713 --- /dev/null +++ b/Libraries/AppsFlyer/Plugins/iOS/AFUnityUtils.mm @@ -0,0 +1,135 @@ +// +// AFUnityUtils.mm +// Unity-iPhone +// +// Created by Jonathan Wesfield on 24/07/2019. +// + +#if __has_include() +#import +#else +#import "AppsFlyerLib.h" +#endif + + +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 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 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/Libraries/AppsFlyer/Plugins/iOS/AppsFlyer+AppController.m b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyer+AppController.m new file mode 100644 index 0000000..b309b3e --- /dev/null +++ b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyer+AppController.m @@ -0,0 +1,164 @@ +// +// 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*, (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/Libraries/AppsFlyer/Plugins/iOS/AppsFlyerAppController.mm b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyerAppController.mm new file mode 100644 index 0000000..3e492c0 --- /dev/null +++ b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyerAppController.mm @@ -0,0 +1,131 @@ +// +// 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/Libraries/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.h b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.h new file mode 100644 index 0000000..c79fec4 --- /dev/null +++ b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.h @@ -0,0 +1,34 @@ +// +// 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/Libraries/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.m b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.m new file mode 100644 index 0000000..c4e7278 --- /dev/null +++ b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyerAttribution.m @@ -0,0 +1,86 @@ +// +// 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/Libraries/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.h b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.h new file mode 100644 index 0000000..96e3ca8 --- /dev/null +++ b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.h @@ -0,0 +1,47 @@ +// +// 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 + +@interface AppsFlyeriOSWarpper : NSObject ++ (BOOL) didCallStart; ++ (void) setDidCallStart:(BOOL)val; +@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 NSString* validateObjectName = @""; +static NSString* openStoreObjectName = @""; +static NSString* generateInviteObjectName = @""; +static NSString* startRequestObjectName = @""; +static NSString* inAppRequestObjectName = @""; +static NSString* onDeeplinkingObjectName = @""; + diff --git a/Libraries/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm new file mode 100644 index 0000000..79efe79 --- /dev/null +++ b/Libraries/AppsFlyer/Plugins/iOS/AppsFlyeriOSWrapper.mm @@ -0,0 +1,325 @@ +// +// AppsFlyeriOSWarpper.mm +// Unity-iPhone +// +// Created by Jonathan Wesfield on 24/07/2019. +// + +#import "AppsFlyeriOSWrapper.h" + + +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) { + 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 _anonymizeUser (bool anonymizeUser) { + [AppsFlyerLib shared].anonymizeUser = anonymizeUser; + } + + 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* tranactionId, const char* additionalParameters, const char* objectName) { + + validateObjectName = stringFromChar(objectName); + + [[AppsFlyerLib shared] + validateAndLogInAppPurchase:stringFromChar(productIdentifier) + price:stringFromChar(price) + currency:stringFromChar(currency) + transactionId:stringFromChar(tranactionId) + 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 _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)]; + } + +} + +@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)); +} + +@end + diff --git a/Libraries/Plugins/iOS/libYouMeCommon.a b/Libraries/Plugins/iOS/libYouMeCommon.a new file mode 100644 index 0000000..99fdbd1 Binary files /dev/null and b/Libraries/Plugins/iOS/libYouMeCommon.a differ diff --git a/Libraries/Plugins/iOS/libdivesensor.a b/Libraries/Plugins/iOS/libdivesensor.a new file mode 100644 index 0000000..c3bf6e1 Binary files /dev/null and b/Libraries/Plugins/iOS/libdivesensor.a differ diff --git a/Libraries/Plugins/iOS/libffmpeg3.3.a b/Libraries/Plugins/iOS/libffmpeg3.3.a new file mode 100644 index 0000000..0badcf4 Binary files /dev/null and b/Libraries/Plugins/iOS/libffmpeg3.3.a differ diff --git a/Libraries/Plugins/iOS/libtolua.a b/Libraries/Plugins/iOS/libtolua.a new file mode 100644 index 0000000..37d7498 Binary files /dev/null and b/Libraries/Plugins/iOS/libtolua.a differ diff --git a/Libraries/Plugins/iOS/libyoume_voice_engine.a b/Libraries/Plugins/iOS/libyoume_voice_engine.a new file mode 100644 index 0000000..7d9abbd Binary files /dev/null and b/Libraries/Plugins/iOS/libyoume_voice_engine.a differ diff --git a/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityAppController+Notifications.h b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityAppController+Notifications.h new file mode 100644 index 0000000..12a9423 --- /dev/null +++ b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityAppController+Notifications.h @@ -0,0 +1,24 @@ +// +// UnityAppController+Notifications.h +// Unity-iPhone +// +// Copyright © 2018 Unity Technologies. All rights reserved. +// +#if TARGET_OS_IOS +#import "UnityAppController.h" + +#include "Classes/PluginBase/LifeCycleListener.h" +#include "Classes/PluginBase/AppDelegateListener.h" + + +@interface UnityAppController (Notifications) + +@end + +@interface UnityNotificationLifeCycleManager : NSObject + ++ (instancetype)sharedInstance; + +@end + +#endif diff --git a/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityAppController+Notifications.mm b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityAppController+Notifications.mm new file mode 100644 index 0000000..86c9814 --- /dev/null +++ b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityAppController+Notifications.mm @@ -0,0 +1,114 @@ +// +// UnityAppController+Notifications.m +// Unity-iPhone +// +// Copyright © 2018 Unity Technologies. All rights reserved. +// +#if TARGET_OS_IOS + +#import + +#import "UnityNotificationManager.h" +#import "UnityAppController+Notifications.h" + +#import "UnityNotificationWrapper.h" + +@implementation UnityNotificationLifeCycleManager + + ++ (void)load { + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + [UnityNotificationLifeCycleManager sharedInstance]; + + UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter]; + center.delegate = [UnityNotificationManager sharedInstance]; + }); +} + ++ (instancetype)sharedInstance; +{ + static UnityNotificationLifeCycleManager *sharedInstance = nil; + static dispatch_once_t onceToken; + + dispatch_once(&onceToken, ^{ + sharedInstance = [[UnityNotificationLifeCycleManager alloc] init]; + NSNotificationCenter *nc = [NSNotificationCenter defaultCenter]; + [nc addObserverForName:UIApplicationDidBecomeActiveNotification + object:nil + queue:[NSOperationQueue mainQueue] + usingBlock:^(NSNotification *notification) { + + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + [manager updateScheduledNotificationList]; + [manager updateDeliveredNotificationList]; + [manager updateNotificationSettings]; + + }]; + + [nc addObserverForName:UIApplicationDidEnterBackgroundNotification + object:nil + queue:[NSOperationQueue mainQueue] + usingBlock:^(NSNotification *notification) { + + [UnityNotificationManager sharedInstance].lastReceivedNotification = NULL; + }]; + + [nc addObserverForName:UIApplicationDidFinishLaunchingNotification + object:nil + queue:[NSOperationQueue mainQueue] + usingBlock:^(NSNotification *notification) { + + BOOL authorizeOnLaunch = [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"UnityNotificationRequestAuthorizationOnAppLaunch"] boolValue] ; + BOOL supportsPushNotification = [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"UnityAddRemoteNotificationCapability"] boolValue] ; + BOOL registerRemoteOnLaunch = supportsPushNotification == YES ? + [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"UnityNotificationRequestAuthorizationForRemoteNotificationsOnAppLaunch"] boolValue] : NO ; + + NSInteger remoteForegroundPresentationOptions = [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"UnityRemoteNotificationForegroundPresentationOptions"] integerValue] ; + + NSInteger defaultAuthorizationOptions = [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"UnityNotificationDefaultAuthorizationOptions"] integerValue] ; + + if (defaultAuthorizationOptions <= 0) + defaultAuthorizationOptions = (UNAuthorizationOptionSound + UNAuthorizationOptionAlert + UNAuthorizationOptionBadge); + + if (authorizeOnLaunch) + { + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + [manager requestAuthorization:defaultAuthorizationOptions : registerRemoteOnLaunch]; + manager.remoteNotificationForegroundPresentationOptions = remoteForegroundPresentationOptions; + } + }]; + + [nc addObserverForName:kUnityDidRegisterForRemoteNotificationsWithDeviceToken + object:nil + queue:[NSOperationQueue mainQueue] + usingBlock:^(NSNotification *notification) { + NSLog(@"didRegisterForRemoteNotificationsWithDeviceToken"); + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + manager.remoteNotificationsRegistered = UNAuthorizationStatusDenied; + + if ([notification.userInfo isKindOfClass:[NSData class]]) + { + NSData* data = (NSData*)notification.userInfo; + [manager setDeviceTokenFromNSData: (NSData*)notification.userInfo]; + } + [manager checkAuthorizationFinished]; + }]; + + [nc addObserverForName:kUnityDidFailToRegisterForRemoteNotificationsWithError + object:nil + queue:[NSOperationQueue mainQueue] + usingBlock:^(NSNotification *notification) { + NSLog(@"didFailToRegisterForRemoteNotificationsWithError"); + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + manager.remoteNotificationsRegistered = UNAuthorizationStatusAuthorized; + [manager checkAuthorizationFinished]; + + }]; + + + }); + return sharedInstance; +} +@end +#endif diff --git a/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationManager.h b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationManager.h new file mode 100644 index 0000000..4cf34df --- /dev/null +++ b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationManager.h @@ -0,0 +1,128 @@ +// +// UnityNotificationManager.h +// iOS.notifications +// +// Copyright © 2018 Unity Technologies. All rights reserved. +// + +#if TARGET_OS_IOS + +#import +#import +#import +// +#define SYSTEM_VERSION_10_OR_ABOVE ([[[UIDevice currentDevice] systemVersion] compare:@"10.0" options:NSNumericSearch] != NSOrderedAscending) + +enum triggerType { + TIME_TRIGGER = 0, + CALENDAR_TRIGGER = 10, + LOCATION_TRIGGER = 20, + PUSH_TRIGGER = 3, +}; + +typedef struct iOSNotificationData +{ + char* identifier; + char* title; + char* body; + int badge; + char* subtitle; + char* categoryIdentifier; + char* threadIdentifier; + + //Custom data + char* data; + BOOL showInForeground; + int showInForegroundPresentationOptions; + + // Trigger + int triggerType; //0 - time, 1 - calendar, 2 - location, 3 - push. + BOOL repeats; + + //Time trigger + int timeTriggerInterval; + + //Calendar trigger + int calendarTriggerYear; + int calendarTriggerMonth; + int calendarTriggerDay; + int calendarTriggerHour; + int calendarTriggerMinute; + int calendarTriggerSecond; + + //Location trigger + float locationTriggerCenterX; + float locationTriggerCenterY; + float locationTriggerRadius; + bool locationTriggerNotifyOnEntry; + bool locationTriggerNotifyOnExit; + + +} iOSNotificationData; + + +typedef struct iOSNotificationAuthorizationData +{ + bool granted; + char* error; + bool finished; + const char* deviceToken; +} iOSNotificationAuthorizationData; + + +typedef void (*NotificationDataReceivedResponse)(struct iOSNotificationData* data); +typedef void (*AuthorizationRequestResponse) (struct iOSNotificationAuthorizationData* data); + +typedef struct NotificationSettingsData { + int authorizationStatus; + int notificationCenterSetting; + int lockScreenSetting; + int carPlaySetting; + int alertSetting; + int badgeSetting; + int soundSetting; + int alertStyle; + int showPreviewsSetting; +} NotificationSettingsData; + +const int kDefaultPresentationOptions = -1; + +@interface UnityNotificationManager : NSObject + + @property UNNotificationSettings* cachedNotificationSettings; + @property struct iOSNotificationAuthorizationData* authData; + + @property NotificationDataReceivedResponse onNotificationReceivedCallback; + @property NotificationDataReceivedResponse onCatchReceivedRemoteNotificationCallback; + @property AuthorizationRequestResponse onAuthorizationCompletionCallback; + + @property NSArray * cachedPendingNotificationRequests; + @property NSArray * cachedDeliveredNotifications; + + @property (nonatomic) UNNotification* lastReceivedNotification; + + @property BOOL authorized; + @property BOOL authorizationRequestFinished; + @property BOOL needRemoteNotifications; + @property NSString* deviceToken; + @property UNAuthorizationStatus remoteNotificationsRegistered; + + @property UNNotificationPresentationOptions remoteNotificationForegroundPresentationOptions; + + + (instancetype)sharedInstance; + + + (struct iOSNotificationData*)UNNotificationRequestToiOSNotificationData : (UNNotificationRequest*) request; + + (struct iOSNotificationData*)UNNotificationToiOSNotificationData : (UNNotification*) notification; + + (struct NotificationSettingsData*)UNNotificationSettingsToNotificationSettingsData : (UNNotificationSettings*) settings; + + + (void)InitiOSNotificationData : (iOSNotificationData*) notificationData; + + - (void)checkAuthorizationFinished; + - (void)updateScheduledNotificationList; + - (void)updateDeliveredNotificationList; + - (void)updateNotificationSettings; + - (void)requestAuthorization: (NSInteger)authorizationOptions : (BOOL) registerRemote; + - (void)setDeviceTokenFromNSData:(NSData*)deviceToken; +@end + +#endif diff --git a/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationManager.m b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationManager.m new file mode 100644 index 0000000..d56ce85 --- /dev/null +++ b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationManager.m @@ -0,0 +1,327 @@ +// +// UnityNotificationManager.m +// iOS.notifications +// +// Created by Paulius on 24/07/2018. +// Copyright © 2018 Unity Technologies. All rights reserved. +// +#if TARGET_OS_IOS + +#import "UnityNotificationManager.h" + +#if defined(UNITY_USES_LOCATION) && UNITY_USES_LOCATION + #import +#endif + + +@implementation UnityNotificationManager + ++ (instancetype)sharedInstance +{ + static UnityNotificationManager *sharedInstance = nil; + static dispatch_once_t onceToken; + dispatch_once(&onceToken, ^{ + sharedInstance = [[UnityNotificationManager alloc] init]; + }); + + [sharedInstance updateNotificationSettings]; + [sharedInstance updateScheduledNotificationList]; + + return sharedInstance; +} + +- (void)checkAuthorizationFinished +{ + bool requestRejected = self.authorizationRequestFinished && !self.authorized; + + if (!requestRejected && self.needRemoteNotifications) + if (!self.remoteNotificationsRegistered) + return; + + if (self.authorizationRequestFinished && self.onAuthorizationCompletionCallback != NULL && self.authData != NULL) + { + self.authData -> deviceToken = [self.deviceToken UTF8String]; + self.onAuthorizationCompletionCallback(self.authData); + + free(self.authData); + self.authData = NULL; + } +} + +- (void)requestAuthorization: (NSInteger)authorizationOptions : (BOOL) registerRemote +{ + if ( !SYSTEM_VERSION_10_OR_ABOVE) + return; + + registerRemote = true; + + self.authorizationRequestFinished = NO; + UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter]; + + BOOL supportsPushNotification = [[[NSBundle mainBundle] objectForInfoDictionaryKey:@"UnityAddRemoteNotificationCapability"] boolValue] ; + registerRemote = supportsPushNotification == YES ? registerRemote : NO ; + + self.needRemoteNotifications = registerRemote; + [center requestAuthorizationWithOptions: authorizationOptions completionHandler:^(BOOL granted, NSError * _Nullable error) + { + struct iOSNotificationAuthorizationData* authData = (struct iOSNotificationAuthorizationData*)malloc(sizeof(*authData)); + authData -> finished = YES; + authData -> granted = granted; + authData -> error = [[error localizedDescription]cStringUsingEncoding:NSUTF8StringEncoding]; + authData -> deviceToken = ""; + + self.authData = authData; + self.authorized = granted; + if (self.authorized) + { + if (registerRemote) + { + dispatch_async(dispatch_get_main_queue(), ^{ + [[UIApplication sharedApplication] registerForRemoteNotifications]; + self.authorizationRequestFinished = YES; + }); + } + else + { + self.authorizationRequestFinished = YES; + } + } + else + { + self.authorizationRequestFinished = YES; + NSLog(@"Requesting notification authorization failed with: %@", error); + } + + [self checkAuthorizationFinished]; + [self updateNotificationSettings]; + }]; +} + +- (void)setDeviceTokenFromNSData:(NSData *)deviceTokenData { + + NSUInteger len = deviceTokenData.length; + if (len == 0) { + return; + } + const unsigned char *buffer = deviceTokenData.bytes; + NSMutableString *str = [NSMutableString stringWithCapacity:(len * 2)]; + for (int i = 0; i < len; ++i) { + [str appendFormat:@"%02x", buffer[i]]; + } + self.deviceToken = [str copy]; +} + +//Called when a notification is delivered to a foreground app. +-(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions options))completionHandler{ + + if (self.onNotificationReceivedCallback != NULL ) + self.onNotificationReceivedCallback([UnityNotificationManager UNNotificationToiOSNotificationData:notification]); + + BOOL showInForeground; + NSInteger presentationOptions; + + if ( [notification.request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) + { + if (self.onCatchReceivedRemoteNotificationCallback != NULL) + { + showInForeground = NO; + self.onCatchReceivedRemoteNotificationCallback([UnityNotificationManager UNNotificationToiOSNotificationData:notification]); + } + else + { + showInForeground = YES; + presentationOptions = self.remoteNotificationForegroundPresentationOptions; + if (presentationOptions == 0) + presentationOptions = kDefaultPresentationOptions; + } + } + else + { + presentationOptions = [[notification.request.content.userInfo objectForKey:@"showInForegroundPresentationOptions"] intValue]; + showInForeground = [[notification.request.content.userInfo objectForKey:@"showInForeground"] boolValue]; + + } + if (showInForeground) + { + completionHandler(presentationOptions); + } + else + completionHandler(UNNotificationPresentationOptionNone); + + [[UnityNotificationManager sharedInstance] updateDeliveredNotificationList]; +} + +//Called to let your app know which action was selected by the user for a given notification. +-(void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(nonnull void(^)(void))completionHandler +{ + self.lastReceivedNotification = response.notification; + completionHandler(); + [[UnityNotificationManager sharedInstance] updateDeliveredNotificationList]; +} + +-(void)updateScheduledNotificationList +{ + UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter]; + [center getPendingNotificationRequestsWithCompletionHandler:^(NSArray * _Nonnull requests) { + self.cachedPendingNotificationRequests = requests; + }]; +} + +-(void)updateDeliveredNotificationList +{ + UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter]; + [center getDeliveredNotificationsWithCompletionHandler:^(NSArray * _Nonnull notifications) { + self.cachedDeliveredNotifications = notifications; + }]; +} + +- (void)updateNotificationSettings +{ + UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter]; + + [center getNotificationSettingsWithCompletionHandler:^(UNNotificationSettings * _Nonnull settings) { + self.cachedNotificationSettings = settings; + }]; +} + ++ (struct NotificationSettingsData*)UNNotificationSettingsToNotificationSettingsData : (UNNotificationSettings*) settings +{ + struct NotificationSettingsData* settingsData = (struct NotificationSettingsData*)malloc(sizeof(*settingsData)); + settingsData->alertSetting = (int) settings.alertSetting; + settingsData->authorizationStatus = (int) settings.authorizationStatus; + settingsData->badgeSetting = (int) settings.badgeSetting; + settingsData->carPlaySetting = (int) settings.carPlaySetting; + settingsData->lockScreenSetting = (int) settings.lockScreenSetting; + settingsData->notificationCenterSetting = (int) settings.notificationCenterSetting; + settingsData->soundSetting = (int) settings.soundSetting; + settingsData->alertStyle = (int)settings.alertStyle; + + if (@available(iOS 11.0, *)) { + settingsData->showPreviewsSetting = (int)settings.showPreviewsSetting; + } else { + settingsData->showPreviewsSetting = 2; + } + return settingsData; +} + ++ (struct iOSNotificationData*)UNNotificationRequestToiOSNotificationData : (UNNotificationRequest*) request +{ + struct iOSNotificationData* notificationData = (struct iOSNotificationData*)malloc(sizeof(*notificationData)); + [UnityNotificationManager InitiOSNotificationData : notificationData]; + + UNNotificationContent* content = request.content; + + notificationData -> identifier = (char*) [request.identifier UTF8String]; + + if (content.title != nil && content.title.length > 0) + notificationData -> title = (char*) [content.title UTF8String]; + + if (content.body != nil && content.body.length > 0) + notificationData -> body = (char*) [content.body UTF8String]; + + notificationData -> badge = [content.badge intValue]; + + if (content.subtitle != nil && content.subtitle.length > 0) + notificationData -> subtitle = (char*) [content.subtitle UTF8String]; + + if (content.categoryIdentifier != nil && content.categoryIdentifier.length > 0) + notificationData -> categoryIdentifier = (char*) [content.categoryIdentifier UTF8String]; + + if (content.threadIdentifier != nil && content.threadIdentifier.length > 0) + notificationData -> threadIdentifier = (char*) [content.threadIdentifier UTF8String]; + + if ([ request.trigger isKindOfClass:[UNTimeIntervalNotificationTrigger class]]) + { + notificationData -> triggerType = TIME_TRIGGER; + + UNTimeIntervalNotificationTrigger* timeTrigger = (UNTimeIntervalNotificationTrigger*) request.trigger; + notificationData -> timeTriggerInterval = timeTrigger.timeInterval; + notificationData -> repeats = timeTrigger.repeats; + } + else if ([ request.trigger isKindOfClass:[UNCalendarNotificationTrigger class]]) + { + notificationData -> triggerType = CALENDAR_TRIGGER; + + UNCalendarNotificationTrigger* calendarTrigger = (UNCalendarNotificationTrigger*) request.trigger; + NSDateComponents* date = calendarTrigger.dateComponents; + + notificationData->calendarTriggerYear = (int)date.year; + notificationData->calendarTriggerMonth = (int)date.month; + notificationData->calendarTriggerDay = (int)date.day; + notificationData->calendarTriggerHour = (int)date.hour; + notificationData->calendarTriggerMinute = (int)date.minute; + notificationData->calendarTriggerSecond = (int)date.second; + + } + else if ([ request.trigger isKindOfClass:[UNLocationNotificationTrigger class]]) + { +#if defined(UNITY_USES_LOCATION) && UNITY_USES_LOCATION + notificationData -> triggerType = LOCATION_TRIGGER; + + UNLocationNotificationTrigger* locationTrigger = (UNLocationNotificationTrigger*) request.trigger; + CLCircularRegion *region = (CLCircularRegion*)locationTrigger.region; + + notificationData -> locationTriggerCenterX = region.center.latitude ; + notificationData -> locationTriggerCenterY = region.center.longitude; + notificationData -> locationTriggerRadius = region.radius; + notificationData -> locationTriggerNotifyOnExit = region.notifyOnEntry; + notificationData -> locationTriggerNotifyOnEntry = region.notifyOnExit; +#endif + } + else if ([ request.trigger isKindOfClass:[UNPushNotificationTrigger class]]) + { + notificationData -> triggerType = PUSH_TRIGGER; + } + + if ([NSJSONSerialization isValidJSONObject: [request.content.userInfo objectForKey:@"data"]]) { + NSError *error; + NSData *data = [NSJSONSerialization dataWithJSONObject:[request.content.userInfo objectForKey:@"data"] + options:NSJSONWritingPrettyPrinted + error:&error]; + if (! data) { + NSLog(@"Failed parsing notification userInfo[\"data\"]: %@", error); + } else { + notificationData -> data = (char*)[[[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding] UTF8String]; + } + } + else + { + if ([[request.content.userInfo valueForKey:@"data"] isKindOfClass:[NSNumber class]] ) + { + NSNumber *value = (NSNumber*)[request.content.userInfo valueForKey:@"data"]; + + if (CFBooleanGetTypeID() == CFGetTypeID((__bridge CFTypeRef)(value))) { + notificationData -> data = (value == 1) ? "true" : "false"; + } + else { + notificationData -> data = (char*)[[value description] UTF8String]; + } + } + else { + notificationData -> data = (char*) [[[request.content.userInfo objectForKey:@"data"]description] UTF8String]; + } + } + + return notificationData; +} + ++ (struct iOSNotificationData*)UNNotificationToiOSNotificationData : (UNNotification*) notification +{ + UNNotificationRequest* request = notification.request; + return [UnityNotificationManager UNNotificationRequestToiOSNotificationData : request]; +} + ++ (void)InitiOSNotificationData : (iOSNotificationData*) notificationData; +{ + notificationData -> title = " "; + notificationData -> body = " "; + notificationData -> badge = 0; + notificationData -> subtitle = " "; + notificationData -> categoryIdentifier = " "; + notificationData -> threadIdentifier = " "; + notificationData -> triggerType = PUSH_TRIGGER; + notificationData -> data = " "; +} + +@end +#endif diff --git a/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationWrapper.h b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationWrapper.h new file mode 100644 index 0000000..36c87c1 --- /dev/null +++ b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationWrapper.h @@ -0,0 +1,26 @@ +// +// UnityNotificationWrapper.h +// iOS.notifications +// +// Created by Paulius on 26/07/2018. +// Copyright © 2018 Unity Technologies. All rights reserved. +// +#if TARGET_OS_IOS + +#ifndef UnityNotificationWrapper_h +#define UnityNotificationWrapper_h + +typedef void (AUTHORIZATION_CALBACK)(struct iOSNotificationAuthorizationData* data); +typedef void (*DATA_CALLBACK)(struct iOSNotificationData* data); + +void _SetNotificationReceivedDelegate(DATA_CALLBACK callback); + +void _ScheduleLocalNotification(struct iOSNotificationData* data); +void _RequestAuthorization(int options, BOOL registerRemote); + +int _GetScheduledNotificationDataCount(); +iOSNotificationData* _GetScheduledNotificationDataAt(int index); + + +#endif /* UnityNotificationWrapper_h */ +#endif diff --git a/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationWrapper.m b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationWrapper.m new file mode 100644 index 0000000..ed7f92a --- /dev/null +++ b/Libraries/com.unity.mobile.notifications/Runtime/iOS/Plugins/iOS/notifications/UnityNotificationWrapper.m @@ -0,0 +1,296 @@ +// +// UnityNotificationWrapper.m +// iOS.notifications +// +// Copyright © 2018 Unity Technologies. All rights reserved. +// + +#if TARGET_OS_IOS +#import + +#if defined(UNITY_USES_LOCATION) && UNITY_USES_LOCATION + #import +#endif + +#import "UnityNotificationManager.h" +#import "UnityNotificationWrapper.h" + +AuthorizationRequestResponse req_callback; +DATA_CALLBACK g_notificationReceivedCallback; +DATA_CALLBACK g_remoteNotificationCallback; + +void _FreeUnmanagedStruct(void* ptr) +{ + if (ptr != NULL) + { + free(ptr); + ptr = NULL; + } +} + +void onNotificationReceived(struct iOSNotificationData* data) +{ + if (g_notificationReceivedCallback != NULL) + { + g_notificationReceivedCallback(data); + _FreeUnmanagedStruct(data); + } +} + +void onRemoteNotificationReceived(struct iOSNotificationData* data) +{ + if (g_remoteNotificationCallback != NULL) + { + g_remoteNotificationCallback(data); + _FreeUnmanagedStruct(data); + } +} + +void _SetAuthorizationRequestReceivedDelegate(AUTHORIZATION_CALBACK callback) +{ + req_callback = callback; + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + manager.onAuthorizationCompletionCallback = req_callback; +} + +void _SetNotificationReceivedDelegate(DATA_CALLBACK callback) +{ + g_notificationReceivedCallback = callback; + + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + manager.onNotificationReceivedCallback = &onNotificationReceived; +} + +void _SetRemoteNotificationReceivedDelegate(DATA_CALLBACK callback) +{ + g_remoteNotificationCallback = callback; + + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + manager.onCatchReceivedRemoteNotificationCallback = &onRemoteNotificationReceived; +} + + +void _RequestAuthorization(int options, BOOL registerRemote) +{ + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + [manager requestAuthorization:(options) : registerRemote]; + UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter]; + center.delegate = manager; +} + +void _ScheduleLocalNotification(struct iOSNotificationData* data) +{ + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + + UNAuthorizationStatus authorizationStatus = manager.cachedNotificationSettings.authorizationStatus; + + bool canSendNotifications = authorizationStatus != UNAuthorizationStatusAuthorized; + if (@available(iOS 12.0, *)) { + if (!canSendNotifications) + canSendNotifications = authorizationStatus == UNAuthorizationStatusProvisional; + } + if (canSendNotifications) + { + NSLog(@"Attempting to schedule a local notification without authorization, please call RequestAuthorization before attempting to schedule any notifications."); + return; + } + assert(manager.onNotificationReceivedCallback != NULL); + + NSDictionary *userInfo = @{ + @"showInForeground" : @(data->showInForeground), + @"showInForegroundPresentationOptions" : [NSNumber numberWithInteger:data->showInForegroundPresentationOptions], + @"data" : @(data->data), + }; + + UNMutableNotificationContent* content = [[UNMutableNotificationContent alloc] init]; + + NSString *title = [NSString localizedUserNotificationStringForKey: [NSString stringWithUTF8String: data->title] arguments:nil]; + NSString *body = [NSString localizedUserNotificationStringForKey: [NSString stringWithUTF8String: data->body] arguments:nil]; + + // iOS 10 does not show notifications with an empty body or title fields. Since this works fine on iOS 11+ we'll add assign a string + // with a space to maintain consistent behaviour. + if (@available(iOS 11.0, *)) { + } + else { + if (title.length == 0) + title = @" "; + if (body.length == 0) + body = @" "; + } + + content.title = title; + content.body = body; + + content.userInfo = userInfo; + + if (data->badge >= 0) + { + content.badge = [NSNumber numberWithInt:data->badge]; + } + + if (data->subtitle != NULL) + content.subtitle = [NSString localizedUserNotificationStringForKey: [NSString stringWithUTF8String: data->subtitle] arguments:nil]; + + if (data->categoryIdentifier != NULL) + content.categoryIdentifier = [NSString stringWithUTF8String:data->categoryIdentifier]; + + if (data->threadIdentifier != NULL) + content.threadIdentifier = [NSString stringWithUTF8String:data->threadIdentifier]; + + // TODO add a way to specify custom sounds. + content.sound = [UNNotificationSound defaultSound]; + + UNNotificationTrigger* trigger; + + if ( data->triggerType == TIME_TRIGGER) + { + trigger = [UNTimeIntervalNotificationTrigger triggerWithTimeInterval:data->timeTriggerInterval repeats: data -> repeats]; + } + else if ( data->triggerType == CALENDAR_TRIGGER) + { + NSDateComponents* date = [[NSDateComponents alloc] init]; + if ( data->calendarTriggerYear >= 0) + date.year = data->calendarTriggerYear; + if (data->calendarTriggerMonth >= 0) + date.month = data->calendarTriggerMonth; + if (data->calendarTriggerDay >= 0) + date.day = data->calendarTriggerDay; + if (data->calendarTriggerHour >= 0) + date.hour = data->calendarTriggerHour; + if (data->calendarTriggerMinute >= 0) + date.minute = data->calendarTriggerMinute; + if (data->calendarTriggerSecond >= 0) + date.second = data->calendarTriggerSecond; + + trigger = [UNCalendarNotificationTrigger triggerWithDateMatchingComponents:date repeats:data->repeats]; + } + else if ( data->triggerType == LOCATION_TRIGGER) + { +#if defined(UNITY_USES_LOCATION) && UNITY_USES_LOCATION + CLLocationCoordinate2D center = CLLocationCoordinate2DMake(data->locationTriggerCenterX, data->locationTriggerCenterY); + + CLCircularRegion* region = [[CLCircularRegion alloc] initWithCenter:center + radius:data->locationTriggerRadius identifier:@"Headquarters"]; + region.notifyOnEntry = data->locationTriggerNotifyOnEntry; + region.notifyOnExit = data->locationTriggerNotifyOnExit; + + trigger = [UNLocationNotificationTrigger triggerWithRegion:region repeats:NO]; +#else + return; +#endif + } + else + { + return; + } + + UNNotificationRequest* request = [UNNotificationRequest requestWithIdentifier: + [NSString stringWithUTF8String:data->identifier] content:content trigger:trigger]; + + // Schedule the notification. + UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter]; + [center addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) { + + if (error != NULL) + NSLog(@"%@",[error localizedDescription]); + + [manager updateScheduledNotificationList]; + + }]; +} + +NotificationSettingsData* _GetNotificationSettings() +{ + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + return [UnityNotificationManager UNNotificationSettingsToNotificationSettingsData:[manager cachedNotificationSettings]]; +} + +int _GetScheduledNotificationDataCount() +{ + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + return (int)[manager.cachedPendingNotificationRequests count]; +} +iOSNotificationData* _GetScheduledNotificationDataAt(int index) +{ + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + + if (index >= [manager.cachedPendingNotificationRequests count]) + return NULL; + + UNNotificationRequest * request = manager.cachedPendingNotificationRequests[index]; + + + return [UnityNotificationManager UNNotificationRequestToiOSNotificationData : request]; +} + +int _GetDeliveredNotificationDataCount() +{ + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + return [manager.cachedDeliveredNotifications count]; +} +iOSNotificationData* _GetDeliveredNotificationDataAt(int index) +{ + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + + if (index >= [manager.cachedDeliveredNotifications count]) + return NULL; + + UNNotification * notification = manager.cachedDeliveredNotifications[index]; + + return [UnityNotificationManager UNNotificationToiOSNotificationData: notification]; +} + + +void _RemoveScheduledNotification(const char* identifier) +{ + UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter]; + [center removePendingNotificationRequestsWithIdentifiers:@[[NSString stringWithUTF8String:identifier]]]; + [[UnityNotificationManager sharedInstance] updateScheduledNotificationList]; +} + + +void _RemoveAllScheduledNotifications() +{ + UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter]; + [center removeAllPendingNotificationRequests]; + [[UnityNotificationManager sharedInstance] updateScheduledNotificationList]; +} + +void _RemoveDeliveredNotification(const char* identifier) +{ + UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter]; + [center removeDeliveredNotificationsWithIdentifiers:@[[NSString stringWithUTF8String:identifier]]]; + [[UnityNotificationManager sharedInstance] updateDeliveredNotificationList]; +} + +void _RemoveAllDeliveredNotifications() +{ + UNUserNotificationCenter* center = [UNUserNotificationCenter currentNotificationCenter]; + [center removeAllDeliveredNotifications]; + [[UnityNotificationManager sharedInstance] updateDeliveredNotificationList]; +} + +void _SetApplicationBadge(long badge) +{ + [[UIApplication sharedApplication] setApplicationIconBadgeNumber:badge]; +} + +long _GetApplicationBadge() +{ + return[UIApplication sharedApplication].applicationIconBadgeNumber; +} + +bool _GetAppOpenedUsingNotification() +{ + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + return manager.lastReceivedNotification != NULL; +} + + +iOSNotificationData* _GetLastNotificationData() +{ + UnityNotificationManager* manager = [UnityNotificationManager sharedInstance]; + iOSNotificationData* data = [UnityNotificationManager UNNotificationRequestToiOSNotificationData : manager.lastReceivedNotification.request]; + return data; +} +#endif diff --git a/Unity-iPhone.xcodeproj/project.pbxproj b/Unity-iPhone.xcodeproj/project.pbxproj index bc62050..f01cafa 100644 --- a/Unity-iPhone.xcodeproj/project.pbxproj +++ b/Unity-iPhone.xcodeproj/project.pbxproj @@ -157,165 +157,413 @@ D507D60F2994D3AB00CF3953 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; D507D6142994DEE900CF3953 /* js in Resources */ = {isa = PBXBuildFile; fileRef = D507D6132994DEE900CF3953 /* js */; }; D50CEEEB29C043ED002CC932 /* WebPageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D50CEEEA29C043ED002CC932 /* WebPageViewController.m */; }; - D557598A2A5FAC16009369FC /* Il2CppGenericAdjustorThunkTable.c in Sources */ = {isa = PBXBuildFile; fileRef = D55758EB2A5FAC15009369FC /* Il2CppGenericAdjustorThunkTable.c */; }; - D557598B2A5FAC16009369FC /* Generics10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758EC2A5FAC15009369FC /* Generics10.cpp */; }; - D557598C2A5FAC16009369FC /* mscorlib9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758ED2A5FAC15009369FC /* mscorlib9.cpp */; }; - D557598D2A5FAC16009369FC /* UnityEngine.UnityAnalyticsModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758EE2A5FAC15009369FC /* UnityEngine.UnityAnalyticsModule.cpp */; }; - D557598E2A5FAC16009369FC /* Il2CppGenericMethodTable.c in Sources */ = {isa = PBXBuildFile; fileRef = D55758EF2A5FAC15009369FC /* Il2CppGenericMethodTable.c */; }; - D557598F2A5FAC16009369FC /* Generics4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758F02A5FAC15009369FC /* Generics4.cpp */; }; - D55759902A5FAC16009369FC /* Generics5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758F12A5FAC15009369FC /* Generics5.cpp */; }; - D55759912A5FAC16009369FC /* System.Xml_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55758F22A5FAC15009369FC /* System.Xml_CodeGen.c */; }; - D55759922A5FAC16009369FC /* GenericMethods6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758F32A5FAC15009369FC /* GenericMethods6.cpp */; }; - D55759932A5FAC16009369FC /* mscorlib8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758F42A5FAC15009369FC /* mscorlib8.cpp */; }; - D55759942A5FAC16009369FC /* Generics11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758F52A5FAC15009369FC /* Generics11.cpp */; }; - D55759952A5FAC16009369FC /* UnityEngine.Physics2DModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55758F62A5FAC15009369FC /* UnityEngine.Physics2DModule_CodeGen.c */; }; - D55759962A5FAC16009369FC /* Il2CppCCTypeValuesTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758F72A5FAC15009369FC /* Il2CppCCTypeValuesTable.cpp */; }; - D55759972A5FAC16009369FC /* Generics13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758F82A5FAC15009369FC /* Generics13.cpp */; }; - D55759982A5FAC16009369FC /* GenericMethods4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758F92A5FAC15009369FC /* GenericMethods4.cpp */; }; - D55759992A5FAC16009369FC /* Il2CppInteropDataTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758FA2A5FAC15009369FC /* Il2CppInteropDataTable.cpp */; }; - D557599A2A5FAC16009369FC /* Generics7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758FB2A5FAC15009369FC /* Generics7.cpp */; }; - D557599B2A5FAC16009369FC /* UnityEngine.UIElementsModule9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758FC2A5FAC15009369FC /* UnityEngine.UIElementsModule9.cpp */; }; - D557599C2A5FAC16009369FC /* UnityEngine.UIElementsModule8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758FD2A5FAC15009369FC /* UnityEngine.UIElementsModule8.cpp */; }; - D557599D2A5FAC16009369FC /* UnityICallRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758FE2A5FAC15009369FC /* UnityICallRegistration.cpp */; }; - D557599E2A5FAC16009369FC /* Generics6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55758FF2A5FAC15009369FC /* Generics6.cpp */; }; - D557599F2A5FAC16009369FC /* GenericMethods5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759002A5FAC15009369FC /* GenericMethods5.cpp */; }; - D55759A02A5FAC16009369FC /* UnityEngine_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759012A5FAC15009369FC /* UnityEngine_CodeGen.c */; }; - D55759A12A5FAC16009369FC /* Generics12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759022A5FAC15009369FC /* Generics12.cpp */; }; - D55759A22A5FAC16009369FC /* Generics16.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759032A5FAC15009369FC /* Generics16.cpp */; }; - D55759A32A5FAC16009369FC /* GenericMethods1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759042A5FAC15009369FC /* GenericMethods1.cpp */; }; - D55759A42A5FAC16009369FC /* UnityEngine.UIElementsNativeModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759052A5FAC15009369FC /* UnityEngine.UIElementsNativeModule_CodeGen.c */; }; - D55759A52A5FAC16009369FC /* Generics2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759062A5FAC15009369FC /* Generics2.cpp */; }; - D55759A62A5FAC16009369FC /* UnityEngine.TextCoreFontEngineModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759072A5FAC15009369FC /* UnityEngine.TextCoreFontEngineModule_CodeGen.c */; }; - D55759A72A5FAC16009369FC /* UnityEngine.PhysicsModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759082A5FAC15009369FC /* UnityEngine.PhysicsModule_CodeGen.c */; }; - D55759A82A5FAC16009369FC /* System1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759092A5FAC15009369FC /* System1.cpp */; }; - D55759A92A5FAC16009369FC /* Generics3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557590A2A5FAC15009369FC /* Generics3.cpp */; }; - D55759AA2A5FAC16009369FC /* UnityEngine.AndroidJNIModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D557590B2A5FAC15009369FC /* UnityEngine.AndroidJNIModule_CodeGen.c */; }; - D55759AB2A5FAC16009369FC /* Assembly-CSharp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557590C2A5FAC15009369FC /* Assembly-CSharp.cpp */; }; - D55759AC2A5FAC16009369FC /* Generics17.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557590D2A5FAC15009369FC /* Generics17.cpp */; }; - D55759AD2A5FAC16009369FC /* UnityEngine.UI_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D557590E2A5FAC15009369FC /* UnityEngine.UI_CodeGen.c */; }; - D55759AE2A5FAC16009369FC /* Generics15.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557590F2A5FAC15009369FC /* Generics15.cpp */; }; - D55759AF2A5FAC16009369FC /* UnityEngine.SpriteShapeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759102A5FAC15009369FC /* UnityEngine.SpriteShapeModule.cpp */; }; - D55759B02A5FAC16009369FC /* UnityEngine.TextRenderingModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759112A5FAC15009369FC /* UnityEngine.TextRenderingModule.cpp */; }; - D55759B12A5FAC16009369FC /* GenericMethods2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759122A5FAC15009369FC /* GenericMethods2.cpp */; }; - D55759B22A5FAC16009369FC /* System3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759132A5FAC15009369FC /* System3.cpp */; }; - D55759B32A5FAC16009369FC /* Generics1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759142A5FAC15009369FC /* Generics1.cpp */; }; - D55759B42A5FAC16009369FC /* __Generated_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759152A5FAC15009369FC /* __Generated_CodeGen.c */; }; - D55759B52A5FAC16009369FC /* System.Configuration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759162A5FAC15009369FC /* System.Configuration.cpp */; }; - D55759B62A5FAC16009369FC /* Il2CppCodeRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759172A5FAC15009369FC /* Il2CppCodeRegistration.cpp */; }; - D55759B72A5FAC16009369FC /* System2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759182A5FAC15009369FC /* System2.cpp */; }; - D55759B82A5FAC16009369FC /* Il2CppCCalculateFieldValues1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759192A5FAC15009369FC /* Il2CppCCalculateFieldValues1.cpp */; }; - D55759B92A5FAC16009369FC /* __Generated.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557591A2A5FAC15009369FC /* __Generated.cpp */; }; - D55759BA2A5FAC16009369FC /* GenericMethods3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557591B2A5FAC15009369FC /* GenericMethods3.cpp */; }; - D55759BB2A5FAC16009369FC /* Generics14.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557591C2A5FAC15009369FC /* Generics14.cpp */; }; - D55759BC2A5FAC16009369FC /* mscorlib15.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557591D2A5FAC15009369FC /* mscorlib15.cpp */; }; - D55759BD2A5FAC16009369FC /* UnityEngine.UIElementsModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D557591E2A5FAC15009369FC /* UnityEngine.UIElementsModule_CodeGen.c */; }; - D55759BE2A5FAC16009369FC /* Il2CppCCalculateTypeValues.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557591F2A5FAC15009369FC /* Il2CppCCalculateTypeValues.cpp */; }; - D55759BF2A5FAC16009369FC /* Il2CppCCalculateFieldValues.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759202A5FAC15009369FC /* Il2CppCCalculateFieldValues.cpp */; }; - D55759C02A5FAC16009369FC /* UnityEngine.AudioModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759212A5FAC15009369FC /* UnityEngine.AudioModule.cpp */; }; - D55759C12A5FAC16009369FC /* Il2CppGenericMethodPointerTable.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759222A5FAC15009369FC /* Il2CppGenericMethodPointerTable.c */; }; - D55759C22A5FAC16009369FC /* mscorlib14.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759232A5FAC15009369FC /* mscorlib14.cpp */; }; - D55759C32A5FAC16009369FC /* UnityEngine.CoreModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759242A5FAC15009369FC /* UnityEngine.CoreModule_CodeGen.c */; }; - D55759C42A5FAC16009369FC /* UnityEngine.AnimationModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759252A5FAC15009369FC /* UnityEngine.AnimationModule_CodeGen.c */; }; - D55759C52A5FAC16009369FC /* UnityEngine.AnimationModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759262A5FAC15009369FC /* UnityEngine.AnimationModule.cpp */; }; - D55759C62A5FAC16009369FC /* UnityEngine.TextRenderingModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759272A5FAC15009369FC /* UnityEngine.TextRenderingModule_CodeGen.c */; }; - D55759C72A5FAC16009369FC /* mscorlib16.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759282A5FAC15009369FC /* mscorlib16.cpp */; }; - D55759C82A5FAC16009369FC /* mscorlib17.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759292A5FAC15009369FC /* mscorlib17.cpp */; }; - D55759C92A5FAC16009369FC /* UnityEngine.GameCenterModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557592A2A5FAC15009369FC /* UnityEngine.GameCenterModule.cpp */; }; - D55759CA2A5FAC16009369FC /* mscorlib13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557592B2A5FAC15009369FC /* mscorlib13.cpp */; }; - D55759CB2A5FAC16009369FC /* mscorlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557592C2A5FAC15009369FC /* mscorlib.cpp */; }; - D55759CC2A5FAC16009369FC /* mscorlib12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557592D2A5FAC15009369FC /* mscorlib12.cpp */; }; - D55759CD2A5FAC16009369FC /* UnityEngine.UnityWebRequestModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D557592E2A5FAC15009369FC /* UnityEngine.UnityWebRequestModule_CodeGen.c */; }; - D55759CE2A5FAC16009369FC /* mscorlib10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557592F2A5FAC15009369FC /* mscorlib10.cpp */; }; - D55759CF2A5FAC16009369FC /* Il2CppRgctxTable.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759302A5FAC15009369FC /* Il2CppRgctxTable.c */; }; - D55759D02A5FAC16009369FC /* UnityClassRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759312A5FAC15009369FC /* UnityClassRegistration.cpp */; }; - D55759D12A5FAC16009369FC /* UnityEngine.InputLegacyModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759322A5FAC15009369FC /* UnityEngine.InputLegacyModule.cpp */; }; - D55759D22A5FAC16009369FC /* mscorlib11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759332A5FAC15009369FC /* mscorlib11.cpp */; }; - D55759D32A5FAC16009369FC /* UnityEngine.SpriteShapeModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759342A5FAC15009369FC /* UnityEngine.SpriteShapeModule_CodeGen.c */; }; - D55759D42A5FAC16009369FC /* UnityEngine.UIElementsModule11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759352A5FAC15009369FC /* UnityEngine.UIElementsModule11.cpp */; }; - D55759D52A5FAC16009369FC /* UnityEngine.IMGUIModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759362A5FAC15009369FC /* UnityEngine.IMGUIModule_CodeGen.c */; }; - D55759D62A5FAC16009369FC /* Il2CppTypeDefinitions.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759372A5FAC15009369FC /* Il2CppTypeDefinitions.c */; }; - D55759D72A5FAC16009369FC /* UnityEngine.UI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759382A5FAC15009369FC /* UnityEngine.UI.cpp */; }; - D55759D82A5FAC16009369FC /* System_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759392A5FAC15009369FC /* System_CodeGen.c */; }; - D55759D92A5FAC16009369FC /* UnityEngine.IMGUIModule1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557593A2A5FAC15009369FC /* UnityEngine.IMGUIModule1.cpp */; }; - D55759DA2A5FAC16009369FC /* UnityEngine.UIModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557593B2A5FAC15009369FC /* UnityEngine.UIModule.cpp */; }; - D55759DB2A5FAC16009369FC /* UnityEngine.UIElementsModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557593C2A5FAC15009369FC /* UnityEngine.UIElementsModule.cpp */; }; - D55759DC2A5FAC16009369FC /* UnityEngine.UIElementsModule10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557593D2A5FAC15009369FC /* UnityEngine.UIElementsModule10.cpp */; }; - D55759DD2A5FAC16009369FC /* UnityEngine.UIElementsModule12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557593E2A5FAC15009369FC /* UnityEngine.UIElementsModule12.cpp */; }; - D55759DE2A5FAC16009369FC /* UnityEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557593F2A5FAC15009369FC /* UnityEngine.cpp */; }; - D55759DF2A5FAC16009369FC /* UnityEngine.SharedInternalsModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759402A5FAC15009369FC /* UnityEngine.SharedInternalsModule_CodeGen.c */; }; - D55759E02A5FAC16009369FC /* mscorlib_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759412A5FAC15009369FC /* mscorlib_CodeGen.c */; }; - D55759E12A5FAC16009369FC /* UnityEngine.TextCoreTextEngineModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759422A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule.cpp */; }; - D55759E22A5FAC16009369FC /* Il2CppMetadataRegistration.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759432A5FAC15009369FC /* Il2CppMetadataRegistration.c */; }; - D55759E32A5FAC16009369FC /* UnityEngine.Physics2DModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759442A5FAC15009369FC /* UnityEngine.Physics2DModule.cpp */; }; - D55759E42A5FAC16009369FC /* Il2CppGenericMethodDefinitions.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759452A5FAC15009369FC /* Il2CppGenericMethodDefinitions.c */; }; - D55759E52A5FAC16009369FC /* UnityEngine.SharedInternalsModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759462A5FAC15009369FC /* UnityEngine.SharedInternalsModule.cpp */; }; - D55759E62A5FAC16009369FC /* UnityEngine.TextCoreTextEngineModule2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759472A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule2.cpp */; }; - D55759E72A5FAC16009369FC /* UnityEngine.UIModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759482A5FAC15009369FC /* UnityEngine.UIModule_CodeGen.c */; }; - D55759E82A5FAC16009369FC /* System.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759492A5FAC15009369FC /* System.cpp */; }; - D55759E92A5FAC16009369FC /* Mono.Security.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557594A2A5FAC15009369FC /* Mono.Security.cpp */; }; - D55759EA2A5FAC16009369FC /* UnityEngine.TextCoreTextEngineModule3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557594B2A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule3.cpp */; }; - D55759EB2A5FAC16009369FC /* System.Configuration_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D557594C2A5FAC15009369FC /* System.Configuration_CodeGen.c */; }; - D55759EC2A5FAC16009369FC /* UnityEngine.TextCoreTextEngineModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D557594D2A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule_CodeGen.c */; }; - D55759ED2A5FAC16009369FC /* UnityEngine.TextCoreTextEngineModule1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557594E2A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule1.cpp */; }; - D55759EE2A5FAC16009369FC /* UnityEngine.GridModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557594F2A5FAC15009369FC /* UnityEngine.GridModule.cpp */; }; - D55759EF2A5FAC16009369FC /* Il2CppMetadataUsage.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759502A5FAC15009369FC /* Il2CppMetadataUsage.c */; }; - D55759F02A5FAC16009369FC /* Il2CppReversePInvokeWrapperTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759512A5FAC15009369FC /* Il2CppReversePInvokeWrapperTable.cpp */; }; - D55759F12A5FAC16009369FC /* UnityEngine.UIElementsNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759522A5FAC15009369FC /* UnityEngine.UIElementsNativeModule.cpp */; }; - D55759F22A5FAC16009369FC /* Generics19.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759532A5FAC15009369FC /* Generics19.cpp */; }; - D55759F32A5FAC16009369FC /* Il2CppInvokerTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759542A5FAC15009369FC /* Il2CppInvokerTable.cpp */; }; - D55759F42A5FAC16009369FC /* UnityEngine.UI1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759552A5FAC15009369FC /* UnityEngine.UI1.cpp */; }; - D55759F52A5FAC16009369FC /* Generics25.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759562A5FAC15009369FC /* Generics25.cpp */; }; - D55759F62A5FAC16009369FC /* Mono.Security_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759572A5FAC15009369FC /* Mono.Security_CodeGen.c */; }; - D55759F72A5FAC16009369FC /* UnityEngine.UIElementsModule3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759582A5FAC15009369FC /* UnityEngine.UIElementsModule3.cpp */; }; - D55759F82A5FAC16009369FC /* UnityEngine.UIElementsModule2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759592A5FAC15009369FC /* UnityEngine.UIElementsModule2.cpp */; }; - D55759F92A5FAC16009369FC /* UnityEngine.CoreModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557595A2A5FAC15009369FC /* UnityEngine.CoreModule.cpp */; }; - D55759FA2A5FAC16009369FC /* Il2CppGenericClassTable.c in Sources */ = {isa = PBXBuildFile; fileRef = D557595B2A5FAC15009369FC /* Il2CppGenericClassTable.c */; }; - D55759FB2A5FAC16009369FC /* UnityEngine.GridModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D557595C2A5FAC15009369FC /* UnityEngine.GridModule_CodeGen.c */; }; - D55759FC2A5FAC16009369FC /* System.Xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557595D2A5FAC15009369FC /* System.Xml.cpp */; }; - D55759FD2A5FAC16009369FC /* UnityEngine.CoreModule1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557595E2A5FAC15009369FC /* UnityEngine.CoreModule1.cpp */; }; - D55759FE2A5FAC16009369FC /* Il2CppGenericInstDefinitions.c in Sources */ = {isa = PBXBuildFile; fileRef = D557595F2A5FAC15009369FC /* Il2CppGenericInstDefinitions.c */; }; - D55759FF2A5FAC16009369FC /* mscorlib1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759602A5FAC15009369FC /* mscorlib1.cpp */; }; - D5575A002A5FAC16009369FC /* Generics24.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759612A5FAC15009369FC /* Generics24.cpp */; }; - D5575A012A5FAC16009369FC /* Generics18.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759622A5FAC15009369FC /* Generics18.cpp */; }; - D5575A022A5FAC16009369FC /* UnityEngine.PhysicsModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759632A5FAC15009369FC /* UnityEngine.PhysicsModule.cpp */; }; - D5575A032A5FAC16009369FC /* UnityEngine.TextCoreFontEngineModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759642A5FAC15009369FC /* UnityEngine.TextCoreFontEngineModule.cpp */; }; - D5575A042A5FAC16009369FC /* UnityEngine.UI2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759652A5FAC15009369FC /* UnityEngine.UI2.cpp */; }; - D5575A052A5FAC16009369FC /* Generics26.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759662A5FAC15009369FC /* Generics26.cpp */; }; - D5575A062A5FAC16009369FC /* mscorlib3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759672A5FAC15009369FC /* mscorlib3.cpp */; }; - D5575A072A5FAC16009369FC /* UnityEngine.GameCenterModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759682A5FAC16009369FC /* UnityEngine.GameCenterModule_CodeGen.c */; }; - D5575A082A5FAC16009369FC /* UnityEngine.TilemapModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759692A5FAC16009369FC /* UnityEngine.TilemapModule.cpp */; }; - D5575A092A5FAC16009369FC /* UnityEngine.UIElementsModule1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557596A2A5FAC16009369FC /* UnityEngine.UIElementsModule1.cpp */; }; - D5575A0A2A5FAC16009369FC /* UnityEngine.UnityAnalyticsModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D557596B2A5FAC16009369FC /* UnityEngine.UnityAnalyticsModule_CodeGen.c */; }; - D5575A0B2A5FAC16009369FC /* Il2CppCCFieldValuesTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557596C2A5FAC16009369FC /* Il2CppCCFieldValuesTable.cpp */; }; - D5575A0C2A5FAC16009369FC /* mscorlib2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557596D2A5FAC16009369FC /* mscorlib2.cpp */; }; - D5575A0D2A5FAC16009369FC /* System.Core_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D557596E2A5FAC16009369FC /* System.Core_CodeGen.c */; }; - D5575A0E2A5FAC16009369FC /* Generics27.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557596F2A5FAC16009369FC /* Generics27.cpp */; }; - D5575A0F2A5FAC16009369FC /* UnityEngine.UI3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759702A5FAC16009369FC /* UnityEngine.UI3.cpp */; }; - D5575A102A5FAC16009369FC /* GenericMethods.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759712A5FAC16009369FC /* GenericMethods.cpp */; }; - D5575A112A5FAC16009369FC /* Generics23.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759722A5FAC16009369FC /* Generics23.cpp */; }; - D5575A122A5FAC16009369FC /* UnityEngine.TilemapModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759732A5FAC16009369FC /* UnityEngine.TilemapModule_CodeGen.c */; }; - D5575A132A5FAC16009369FC /* mscorlib6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759742A5FAC16009369FC /* mscorlib6.cpp */; }; - D5575A142A5FAC16009369FC /* UnresolvedVirtualCallStubs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759752A5FAC16009369FC /* UnresolvedVirtualCallStubs.cpp */; }; - D5575A152A5FAC16009369FC /* UnityEngine.UIElementsModule5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759762A5FAC16009369FC /* UnityEngine.UIElementsModule5.cpp */; }; - D5575A162A5FAC16009369FC /* UnityEngine.UIElementsModule4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759772A5FAC16009369FC /* UnityEngine.UIElementsModule4.cpp */; }; - D5575A172A5FAC16009369FC /* UnityEngine.IMGUIModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759782A5FAC16009369FC /* UnityEngine.IMGUIModule.cpp */; }; - D5575A182A5FAC16009369FC /* System.Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759792A5FAC16009369FC /* System.Core.cpp */; }; - D5575A192A5FAC16009369FC /* UnityEngine.InputLegacyModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D557597A2A5FAC16009369FC /* UnityEngine.InputLegacyModule_CodeGen.c */; }; - D5575A1A2A5FAC16009369FC /* mscorlib7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557597B2A5FAC16009369FC /* mscorlib7.cpp */; }; - D5575A1B2A5FAC16009369FC /* Generics22.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557597C2A5FAC16009369FC /* Generics22.cpp */; }; - D5575A1C2A5FAC16009369FC /* Generics20.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557597D2A5FAC16009369FC /* Generics20.cpp */; }; - D5575A1D2A5FAC16009369FC /* mscorlib5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557597E2A5FAC16009369FC /* mscorlib5.cpp */; }; - D5575A1E2A5FAC16009369FC /* UnityEngine.AndroidJNIModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D557597F2A5FAC16009369FC /* UnityEngine.AndroidJNIModule.cpp */; }; - D5575A1F2A5FAC16009369FC /* Assembly-CSharp_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759802A5FAC16009369FC /* Assembly-CSharp_CodeGen.c */; }; - D5575A202A5FAC16009369FC /* Generics8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759812A5FAC16009369FC /* Generics8.cpp */; }; - D5575A212A5FAC16009369FC /* UnityEngine.AudioModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D55759822A5FAC16009369FC /* UnityEngine.AudioModule_CodeGen.c */; }; - D5575A222A5FAC16009369FC /* UnityEngine.UIElementsModule6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759832A5FAC16009369FC /* UnityEngine.UIElementsModule6.cpp */; }; - D5575A232A5FAC16009369FC /* UnityEngine.UIElementsModule7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759842A5FAC16009369FC /* UnityEngine.UIElementsModule7.cpp */; }; - D5575A242A5FAC16009369FC /* Generics9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759852A5FAC16009369FC /* Generics9.cpp */; }; - D5575A252A5FAC16009369FC /* Generics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759862A5FAC16009369FC /* Generics.cpp */; }; - D5575A262A5FAC16009369FC /* UnityEngine.UnityWebRequestModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759872A5FAC16009369FC /* UnityEngine.UnityWebRequestModule.cpp */; }; - D5575A272A5FAC16009369FC /* mscorlib4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759882A5FAC16009369FC /* mscorlib4.cpp */; }; - D5575A282A5FAC16009369FC /* Generics21.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D55759892A5FAC16009369FC /* Generics21.cpp */; }; + D53CC8832A7BA11200CAD911 /* UserNotifications.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D53CC8812A7BA11200CAD911 /* UserNotifications.framework */; }; + D53CC8852A7BA11D00CAD911 /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D53CC8842A7BA11D00CAD911 /* VideoToolbox.framework */; }; + D53CC8902A7BA24A00CAD911 /* AppsFlyeriOSWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = D53CC8892A7BA24A00CAD911 /* AppsFlyeriOSWrapper.mm */; }; + D53CC8912A7BA24A00CAD911 /* AppsFlyer+AppController.m in Sources */ = {isa = PBXBuildFile; fileRef = D53CC88A2A7BA24A00CAD911 /* AppsFlyer+AppController.m */; }; + D53CC8922A7BA24A00CAD911 /* AppsFlyerAppController.mm in Sources */ = {isa = PBXBuildFile; fileRef = D53CC88D2A7BA24A00CAD911 /* AppsFlyerAppController.mm */; }; + D53CC8932A7BA24A00CAD911 /* AFUnityUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = D53CC88E2A7BA24A00CAD911 /* AFUnityUtils.mm */; }; + D53CC8942A7BA24A00CAD911 /* AppsFlyerAttribution.m in Sources */ = {isa = PBXBuildFile; fileRef = D53CC88F2A7BA24A00CAD911 /* AppsFlyerAttribution.m */; }; + D53CC8A12A7BA28D00CAD911 /* UnityNotificationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D53CC89C2A7BA28D00CAD911 /* UnityNotificationManager.m */; }; + D53CC8A22A7BA28D00CAD911 /* UnityNotificationWrapper.m in Sources */ = {isa = PBXBuildFile; fileRef = D53CC89D2A7BA28D00CAD911 /* UnityNotificationWrapper.m */; }; + D53CC8A32A7BA28D00CAD911 /* UnityAppController+Notifications.mm in Sources */ = {isa = PBXBuildFile; fileRef = D53CC8A02A7BA28D00CAD911 /* UnityAppController+Notifications.mm */; }; + D53CC8AB2A7BA29800CAD911 /* libYouMeCommon.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D53CC8A62A7BA29800CAD911 /* libYouMeCommon.a */; }; + D53CC8AC2A7BA29800CAD911 /* libdivesensor.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D53CC8A72A7BA29800CAD911 /* libdivesensor.a */; }; + D53CC8AD2A7BA29800CAD911 /* libyoume_voice_engine.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D53CC8A82A7BA29800CAD911 /* libyoume_voice_engine.a */; }; + D53CC8AE2A7BA29900CAD911 /* libffmpeg3.3.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D53CC8A92A7BA29800CAD911 /* libffmpeg3.3.a */; }; + D53CC8AF2A7BA29900CAD911 /* libtolua.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D53CC8AA2A7BA29800CAD911 /* libtolua.a */; }; + D53CC8B12A7BA2EF00CAD911 /* ReplayKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D53CC8B02A7BA2EF00CAD911 /* ReplayKit.framework */; }; + D53CCECA2A7BAE6600CAD911 /* Data in Resources */ = {isa = PBXBuildFile; fileRef = D53CCEC92A7BAE6600CAD911 /* Data */; }; + D53CD0522A7BAE8100CAD911 /* Generics38.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCECC2A7BAE8000CAD911 /* Generics38.cpp */; }; + D53CD0532A7BAE8100CAD911 /* Il2CppGenericAdjustorThunkTable.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCECD2A7BAE8000CAD911 /* Il2CppGenericAdjustorThunkTable.c */; }; + D53CD0542A7BAE8100CAD911 /* Generics10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCECE2A7BAE8000CAD911 /* Generics10.cpp */; }; + D53CD0552A7BAE8100CAD911 /* GenericMethods12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCECF2A7BAE8000CAD911 /* GenericMethods12.cpp */; }; + D53CD0562A7BAE8100CAD911 /* mscorlib9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCED02A7BAE8000CAD911 /* mscorlib9.cpp */; }; + D53CD0572A7BAE8100CAD911 /* GenericMethods7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCED12A7BAE8000CAD911 /* GenericMethods7.cpp */; }; + D53CD0582A7BAE8100CAD911 /* Assembly-CSharp28.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCED22A7BAE8000CAD911 /* Assembly-CSharp28.cpp */; }; + D53CD0592A7BAE8100CAD911 /* UnityEngine.UnityAnalyticsModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCED32A7BAE8000CAD911 /* UnityEngine.UnityAnalyticsModule.cpp */; }; + D53CD05A2A7BAE8100CAD911 /* Il2CppGenericMethodTable.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCED42A7BAE8000CAD911 /* Il2CppGenericMethodTable.c */; }; + D53CD05B2A7BAE8100CAD911 /* Assembly-CSharp14.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCED52A7BAE8000CAD911 /* Assembly-CSharp14.cpp */; }; + D53CD05C2A7BAE8100CAD911 /* Assembly-CSharp8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCED62A7BAE8000CAD911 /* Assembly-CSharp8.cpp */; }; + D53CD05D2A7BAE8100CAD911 /* UnityEngine.VRModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCED72A7BAE8000CAD911 /* UnityEngine.VRModule_CodeGen.c */; }; + D53CD05E2A7BAE8100CAD911 /* System6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCED82A7BAE8000CAD911 /* System6.cpp */; }; + D53CD05F2A7BAE8100CAD911 /* Generics4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCED92A7BAE8000CAD911 /* Generics4.cpp */; }; + D53CD0602A7BAE8100CAD911 /* System.Xml5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEDA2A7BAE8000CAD911 /* System.Xml5.cpp */; }; + D53CD0612A7BAE8100CAD911 /* System.Xml4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEDB2A7BAE8000CAD911 /* System.Xml4.cpp */; }; + D53CD0622A7BAE8100CAD911 /* Generics5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEDC2A7BAE8000CAD911 /* Generics5.cpp */; }; + D53CD0632A7BAE8100CAD911 /* System7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEDD2A7BAE8000CAD911 /* System7.cpp */; }; + D53CD0642A7BAE8100CAD911 /* Assembly-CSharp9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEDE2A7BAE8000CAD911 /* Assembly-CSharp9.cpp */; }; + D53CD0652A7BAE8100CAD911 /* Assembly-CSharp15.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEDF2A7BAE8000CAD911 /* Assembly-CSharp15.cpp */; }; + D53CD0662A7BAE8100CAD911 /* Assembly-CSharp29.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEE02A7BAE8000CAD911 /* Assembly-CSharp29.cpp */; }; + D53CD0672A7BAE8100CAD911 /* System.Xml_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEE12A7BAE8000CAD911 /* System.Xml_CodeGen.c */; }; + D53CD0682A7BAE8100CAD911 /* GenericMethods6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEE22A7BAE8000CAD911 /* GenericMethods6.cpp */; }; + D53CD0692A7BAE8100CAD911 /* GenericMethods13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEE32A7BAE8000CAD911 /* GenericMethods13.cpp */; }; + D53CD06A2A7BAE8100CAD911 /* mscorlib8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEE42A7BAE8000CAD911 /* mscorlib8.cpp */; }; + D53CD06B2A7BAE8100CAD911 /* Generics11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEE52A7BAE8000CAD911 /* Generics11.cpp */; }; + D53CD06C2A7BAE8100CAD911 /* Generics39.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEE62A7BAE8000CAD911 /* Generics39.cpp */; }; + D53CD06D2A7BAE8100CAD911 /* UnityEngine.Physics2DModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEE72A7BAE8000CAD911 /* UnityEngine.Physics2DModule_CodeGen.c */; }; + D53CD06E2A7BAE8100CAD911 /* Il2CppCCTypeValuesTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEE82A7BAE8000CAD911 /* Il2CppCCTypeValuesTable.cpp */; }; + D53CD06F2A7BAE8100CAD911 /* Generics13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEE92A7BAE8000CAD911 /* Generics13.cpp */; }; + D53CD0702A7BAE8100CAD911 /* UnityEngine.VFXModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEEA2A7BAE8000CAD911 /* UnityEngine.VFXModule_CodeGen.c */; }; + D53CD0712A7BAE8100CAD911 /* GenericMethods11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEEB2A7BAE8000CAD911 /* GenericMethods11.cpp */; }; + D53CD0722A7BAE8100CAD911 /* GenericMethods4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEEC2A7BAE8000CAD911 /* GenericMethods4.cpp */; }; + D53CD0732A7BAE8100CAD911 /* Il2CppInteropDataTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEED2A7BAE8000CAD911 /* Il2CppInteropDataTable.cpp */; }; + D53CD0742A7BAE8100CAD911 /* Assembly-CSharp17.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEEE2A7BAE8000CAD911 /* Assembly-CSharp17.cpp */; }; + D53CD0752A7BAE8100CAD911 /* Generics7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEEF2A7BAE8000CAD911 /* Generics7.cpp */; }; + D53CD0762A7BAE8100CAD911 /* System5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEF02A7BAE8000CAD911 /* System5.cpp */; }; + D53CD0772A7BAE8100CAD911 /* System.Xml6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEF12A7BAE8000CAD911 /* System.Xml6.cpp */; }; + D53CD0782A7BAE8100CAD911 /* UnityEngine.UIElementsModule9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEF22A7BAE8000CAD911 /* UnityEngine.UIElementsModule9.cpp */; }; + D53CD0792A7BAE8100CAD911 /* UnityEngine.UIElementsModule8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEF32A7BAE8000CAD911 /* UnityEngine.UIElementsModule8.cpp */; }; + D53CD07A2A7BAE8100CAD911 /* UnityICallRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEF42A7BAE8000CAD911 /* UnityICallRegistration.cpp */; }; + D53CD07B2A7BAE8100CAD911 /* System.Xml7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEF52A7BAE8000CAD911 /* System.Xml7.cpp */; }; + D53CD07C2A7BAE8100CAD911 /* System4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEF62A7BAE8000CAD911 /* System4.cpp */; }; + D53CD07D2A7BAE8100CAD911 /* Generics6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEF72A7BAE8000CAD911 /* Generics6.cpp */; }; + D53CD07E2A7BAE8100CAD911 /* Assembly-CSharp16.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEF82A7BAE8000CAD911 /* Assembly-CSharp16.cpp */; }; + D53CD07F2A7BAE8100CAD911 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEF92A7BAE8000CAD911 /* CString.cpp */; }; + D53CD0802A7BAE8100CAD911 /* GenericMethods5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEFA2A7BAE8000CAD911 /* GenericMethods5.cpp */; }; + D53CD0812A7BAE8100CAD911 /* GenericMethods10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEFB2A7BAE8000CAD911 /* GenericMethods10.cpp */; }; + D53CD0822A7BAE8100CAD911 /* UnityEngine_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEFC2A7BAE8000CAD911 /* UnityEngine_CodeGen.c */; }; + D53CD0832A7BAE8100CAD911 /* Generics12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEFD2A7BAE8000CAD911 /* Generics12.cpp */; }; + D53CD0842A7BAE8100CAD911 /* Generics16.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEFE2A7BAE8000CAD911 /* Generics16.cpp */; }; + D53CD0852A7BAE8100CAD911 /* GenericMethods1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCEFF2A7BAE8000CAD911 /* GenericMethods1.cpp */; }; + D53CD0862A7BAE8100CAD911 /* GenericMethods14.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF002A7BAE8000CAD911 /* GenericMethods14.cpp */; }; + D53CD0872A7BAE8100CAD911 /* Il2CppCCalculateFieldValues3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF012A7BAE8000CAD911 /* Il2CppCCalculateFieldValues3.cpp */; }; + D53CD0882A7BAE8100CAD911 /* UnityEngine.UIElementsNativeModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF022A7BAE8000CAD911 /* UnityEngine.UIElementsNativeModule_CodeGen.c */; }; + D53CD0892A7BAE8100CAD911 /* Assembly-CSharp12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF032A7BAE8000CAD911 /* Assembly-CSharp12.cpp */; }; + D53CD08A2A7BAE8100CAD911 /* System.Runtime.CompilerServices.Unsafe_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF042A7BAE8000CAD911 /* System.Runtime.CompilerServices.Unsafe_CodeGen.c */; }; + D53CD08B2A7BAE8100CAD911 /* Generics2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF052A7BAE8000CAD911 /* Generics2.cpp */; }; + D53CD08C2A7BAE8100CAD911 /* BestHTTP41.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF062A7BAE8000CAD911 /* BestHTTP41.cpp */; }; + D53CD08D2A7BAE8100CAD911 /* System.Xml3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF072A7BAE8000CAD911 /* System.Xml3.cpp */; }; + D53CD08E2A7BAE8100CAD911 /* UnityEngine.TextCoreFontEngineModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF082A7BAE8000CAD911 /* UnityEngine.TextCoreFontEngineModule_CodeGen.c */; }; + D53CD08F2A7BAE8100CAD911 /* UnityEngine.PhysicsModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF092A7BAE8000CAD911 /* UnityEngine.PhysicsModule_CodeGen.c */; }; + D53CD0902A7BAE8100CAD911 /* System.Xml2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF0A2A7BAE8000CAD911 /* System.Xml2.cpp */; }; + D53CD0912A7BAE8100CAD911 /* BestHTTP40.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF0B2A7BAE8000CAD911 /* BestHTTP40.cpp */; }; + D53CD0922A7BAE8100CAD911 /* AmazingAssets.TerrainToMesh_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF0C2A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh_CodeGen.c */; }; + D53CD0932A7BAE8100CAD911 /* System1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF0D2A7BAE8000CAD911 /* System1.cpp */; }; + D53CD0942A7BAE8100CAD911 /* Generics3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF0E2A7BAE8000CAD911 /* Generics3.cpp */; }; + D53CD0952A7BAE8100CAD911 /* Assembly-CSharp13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF0F2A7BAE8000CAD911 /* Assembly-CSharp13.cpp */; }; + D53CD0962A7BAE8100CAD911 /* Il2CppCCalculateFieldValues2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF102A7BAE8000CAD911 /* Il2CppCCalculateFieldValues2.cpp */; }; + D53CD0972A7BAE8100CAD911 /* UnityEngine.AndroidJNIModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF112A7BAE8000CAD911 /* UnityEngine.AndroidJNIModule_CodeGen.c */; }; + D53CD0982A7BAE8100CAD911 /* AmazingAssets.TerrainToMesh1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF122A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh1.cpp */; }; + D53CD0992A7BAE8100CAD911 /* Assembly-CSharp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF132A7BAE8000CAD911 /* Assembly-CSharp.cpp */; }; + D53CD09A2A7BAE8100CAD911 /* Generics17.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF142A7BAE8000CAD911 /* Generics17.cpp */; }; + D53CD09B2A7BAE8100CAD911 /* UnityEngine.UI_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF152A7BAE8000CAD911 /* UnityEngine.UI_CodeGen.c */; }; + D53CD09C2A7BAE8100CAD911 /* Generics15.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF162A7BAE8000CAD911 /* Generics15.cpp */; }; + D53CD09D2A7BAE8100CAD911 /* UnityEngine.SpriteShapeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF172A7BAE8000CAD911 /* UnityEngine.SpriteShapeModule.cpp */; }; + D53CD09E2A7BAE8100CAD911 /* UnityEngine.TextRenderingModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF182A7BAE8000CAD911 /* UnityEngine.TextRenderingModule.cpp */; }; + D53CD09F2A7BAE8100CAD911 /* Generics29.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF192A7BAE8000CAD911 /* Generics29.cpp */; }; + D53CD0A02A7BAE8100CAD911 /* GenericMethods2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF1A2A7BAE8000CAD911 /* GenericMethods2.cpp */; }; + D53CD0A12A7BAE8100CAD911 /* Assembly-CSharp11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF1B2A7BAE8000CAD911 /* Assembly-CSharp11.cpp */; }; + D53CD0A22A7BAE8100CAD911 /* Assembly-CSharp39.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF1C2A7BAE8000CAD911 /* Assembly-CSharp39.cpp */; }; + D53CD0A32A7BAE8100CAD911 /* System3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF1D2A7BAE8000CAD911 /* System3.cpp */; }; + D53CD0A42A7BAE8100CAD911 /* Generics1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF1E2A7BAE8000CAD911 /* Generics1.cpp */; }; + D53CD0A52A7BAE8100CAD911 /* __Generated_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF1F2A7BAE8000CAD911 /* __Generated_CodeGen.c */; }; + D53CD0A62A7BAE8100CAD911 /* BestHTTP42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF202A7BAE8000CAD911 /* BestHTTP42.cpp */; }; + D53CD0A72A7BAE8100CAD911 /* System.Configuration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF212A7BAE8000CAD911 /* System.Configuration.cpp */; }; + D53CD0A82A7BAE8100CAD911 /* System.Xml1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF222A7BAE8000CAD911 /* System.Xml1.cpp */; }; + D53CD0A92A7BAE8100CAD911 /* Il2CppCodeRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF232A7BAE8000CAD911 /* Il2CppCodeRegistration.cpp */; }; + D53CD0AA2A7BAE8100CAD911 /* BestHTTP43.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF242A7BAE8000CAD911 /* BestHTTP43.cpp */; }; + D53CD0AB2A7BAE8100CAD911 /* System2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF252A7BAE8000CAD911 /* System2.cpp */; }; + D53CD0AC2A7BAE8100CAD911 /* Assembly-CSharp38.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF262A7BAE8000CAD911 /* Assembly-CSharp38.cpp */; }; + D53CD0AD2A7BAE8100CAD911 /* Google.Protobuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF272A7BAE8000CAD911 /* Google.Protobuf.cpp */; }; + D53CD0AE2A7BAE8100CAD911 /* Assembly-CSharp10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF282A7BAE8000CAD911 /* Assembly-CSharp10.cpp */; }; + D53CD0AF2A7BAE8100CAD911 /* Il2CppCCalculateFieldValues1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF292A7BAE8000CAD911 /* Il2CppCCalculateFieldValues1.cpp */; }; + D53CD0B02A7BAE8100CAD911 /* AmazingAssets.TerrainToMesh2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF2A2A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh2.cpp */; }; + D53CD0B12A7BAE8100CAD911 /* __Generated.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF2B2A7BAE8000CAD911 /* __Generated.cpp */; }; + D53CD0B22A7BAE8100CAD911 /* GenericMethods3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF2C2A7BAE8000CAD911 /* GenericMethods3.cpp */; }; + D53CD0B32A7BAE8100CAD911 /* Generics28.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF2D2A7BAE8000CAD911 /* Generics28.cpp */; }; + D53CD0B42A7BAE8100CAD911 /* Generics14.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF2E2A7BAE8000CAD911 /* Generics14.cpp */; }; + D53CD0B52A7BAE8100CAD911 /* UnityEngine.UnityWebRequestAudioModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF2F2A7BAE8000CAD911 /* UnityEngine.UnityWebRequestAudioModule_CodeGen.c */; }; + D53CD0B62A7BAE8100CAD911 /* UnityEngine.UnityWebRequestWWWModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF302A7BAE8000CAD911 /* UnityEngine.UnityWebRequestWWWModule.cpp */; }; + D53CD0B72A7BAE8100CAD911 /* BestHTTP.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF312A7BAE8000CAD911 /* BestHTTP.cpp */; }; + D53CD0B82A7BAE8100CAD911 /* mscorlib15.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF322A7BAE8000CAD911 /* mscorlib15.cpp */; }; + D53CD0B92A7BAE8100CAD911 /* UnityEngine.UIElementsModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF332A7BAE8000CAD911 /* UnityEngine.UIElementsModule_CodeGen.c */; }; + D53CD0BA2A7BAE8100CAD911 /* BestHTTP18.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF342A7BAE8000CAD911 /* BestHTTP18.cpp */; }; + D53CD0BB2A7BAE8100CAD911 /* BestHTTP30.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF352A7BAE8000CAD911 /* BestHTTP30.cpp */; }; + D53CD0BC2A7BAE8100CAD911 /* UnityEngine.DirectorModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF362A7BAE8000CAD911 /* UnityEngine.DirectorModule_CodeGen.c */; }; + D53CD0BD2A7BAE8100CAD911 /* Il2CppCCalculateTypeValues.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF372A7BAE8000CAD911 /* Il2CppCCalculateTypeValues.cpp */; }; + D53CD0BE2A7BAE8100CAD911 /* BestHTTP24.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF382A7BAE8000CAD911 /* BestHTTP24.cpp */; }; + D53CD0BF2A7BAE8100CAD911 /* System13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF392A7BAE8000CAD911 /* System13.cpp */; }; + D53CD0C02A7BAE8100CAD911 /* System12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF3A2A7BAE8000CAD911 /* System12.cpp */; }; + D53CD0C12A7BAE8100CAD911 /* Il2CppCCalculateFieldValues.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF3B2A7BAE8000CAD911 /* Il2CppCCalculateFieldValues.cpp */; }; + D53CD0C22A7BAE8100CAD911 /* UnityEngine.AudioModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF3C2A7BAE8000CAD911 /* UnityEngine.AudioModule.cpp */; }; + D53CD0C32A7BAE8100CAD911 /* UnityEngine.XRModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF3D2A7BAE8000CAD911 /* UnityEngine.XRModule.cpp */; }; + D53CD0C42A7BAE8100CAD911 /* BestHTTP1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF3E2A7BAE8000CAD911 /* BestHTTP1.cpp */; }; + D53CD0C52A7BAE8100CAD911 /* Il2CppGenericMethodPointerTable.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF3F2A7BAE8000CAD911 /* Il2CppGenericMethodPointerTable.c */; }; + D53CD0C62A7BAE8100CAD911 /* BestHTTP25.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF402A7BAE8000CAD911 /* BestHTTP25.cpp */; }; + D53CD0C72A7BAE8100CAD911 /* BestHTTP31.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF412A7BAE8000CAD911 /* BestHTTP31.cpp */; }; + D53CD0C82A7BAE8100CAD911 /* UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF422A7BAE8000CAD911 /* UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c */; }; + D53CD0C92A7BAE8100CAD911 /* BestHTTP19.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF432A7BAE8000CAD911 /* BestHTTP19.cpp */; }; + D53CD0CA2A7BAE8100CAD911 /* mscorlib14.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF442A7BAE8000CAD911 /* mscorlib14.cpp */; }; + D53CD0CB2A7BAE8100CAD911 /* UnityEngine.CoreModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF452A7BAE8000CAD911 /* UnityEngine.CoreModule_CodeGen.c */; }; + D53CD0CC2A7BAE8100CAD911 /* UnityEngine.AnimationModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF462A7BAE8000CAD911 /* UnityEngine.AnimationModule_CodeGen.c */; }; + D53CD0CD2A7BAE8100CAD911 /* UnityEngine.AnimationModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF472A7BAE8000CAD911 /* UnityEngine.AnimationModule.cpp */; }; + D53CD0CE2A7BAE8100CAD911 /* UnityEngine.VideoModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF482A7BAE8000CAD911 /* UnityEngine.VideoModule_CodeGen.c */; }; + D53CD0CF2A7BAE8100CAD911 /* UnityEngine.TextRenderingModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF492A7BAE8000CAD911 /* UnityEngine.TextRenderingModule_CodeGen.c */; }; + D53CD0D02A7BAE8100CAD911 /* Generics58.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF4A2A7BAE8000CAD911 /* Generics58.cpp */; }; + D53CD0D12A7BAE8100CAD911 /* spine-unity_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF4B2A7BAE8000CAD911 /* spine-unity_CodeGen.c */; }; + D53CD0D22A7BAE8100CAD911 /* UnityEngine.UnityWebRequestWWWModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF4C2A7BAE8000CAD911 /* UnityEngine.UnityWebRequestWWWModule_CodeGen.c */; }; + D53CD0D32A7BAE8100CAD911 /* mscorlib16.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF4D2A7BAE8000CAD911 /* mscorlib16.cpp */; }; + D53CD0D42A7BAE8100CAD911 /* BestHTTP27.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF4E2A7BAE8000CAD911 /* BestHTTP27.cpp */; }; + D53CD0D52A7BAE8100CAD911 /* BestHTTP33.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF4F2A7BAE8000CAD911 /* BestHTTP33.cpp */; }; + D53CD0D62A7BAE8100CAD911 /* ICSharpCode.SharpZipLib4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF502A7BAE8000CAD911 /* ICSharpCode.SharpZipLib4.cpp */; }; + D53CD0D72A7BAE8100CAD911 /* BestHTTP3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF512A7BAE8000CAD911 /* BestHTTP3.cpp */; }; + D53CD0D82A7BAE8100CAD911 /* BestHTTP_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF522A7BAE8000CAD911 /* BestHTTP_CodeGen.c */; }; + D53CD0D92A7BAE8100CAD911 /* System10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF532A7BAE8000CAD911 /* System10.cpp */; }; + D53CD0DA2A7BAE8100CAD911 /* System11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF542A7BAE8000CAD911 /* System11.cpp */; }; + D53CD0DB2A7BAE8100CAD911 /* BestHTTP2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF552A7BAE8000CAD911 /* BestHTTP2.cpp */; }; + D53CD0DC2A7BAE8100CAD911 /* BestHTTP32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF562A7BAE8000CAD911 /* BestHTTP32.cpp */; }; + D53CD0DD2A7BAE8100CAD911 /* UnityEngine.AssetBundleModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF572A7BAE8000CAD911 /* UnityEngine.AssetBundleModule.cpp */; }; + D53CD0DE2A7BAE8100CAD911 /* BestHTTP26.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF582A7BAE8000CAD911 /* BestHTTP26.cpp */; }; + D53CD0DF2A7BAE8100CAD911 /* CString_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF592A7BAE8000CAD911 /* CString_CodeGen.c */; }; + D53CD0E02A7BAE8100CAD911 /* mscorlib17.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF5A2A7BAE8000CAD911 /* mscorlib17.cpp */; }; + D53CD0E12A7BAE8100CAD911 /* Generics59.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF5B2A7BAE8000CAD911 /* Generics59.cpp */; }; + D53CD0E22A7BAE8100CAD911 /* Assembly-CSharp-firstpass_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF5C2A7BAE8000CAD911 /* Assembly-CSharp-firstpass_CodeGen.c */; }; + D53CD0E32A7BAE8100CAD911 /* Generics49.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF5D2A7BAE8000CAD911 /* Generics49.cpp */; }; + D53CD0E42A7BAE8100CAD911 /* UnityEngine.GameCenterModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF5E2A7BAE8000CAD911 /* UnityEngine.GameCenterModule.cpp */; }; + D53CD0E52A7BAE8100CAD911 /* UnityEngine.XRModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF5F2A7BAE8000CAD911 /* UnityEngine.XRModule_CodeGen.c */; }; + D53CD0E62A7BAE8100CAD911 /* mscorlib13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF602A7BAE8000CAD911 /* mscorlib13.cpp */; }; + D53CD0E72A7BAE8100CAD911 /* BestHTTP22.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF612A7BAE8000CAD911 /* BestHTTP22.cpp */; }; + D53CD0E82A7BAE8100CAD911 /* BestHTTP36.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF622A7BAE8000CAD911 /* BestHTTP36.cpp */; }; + D53CD0E92A7BAE8100CAD911 /* ICSharpCode.SharpZipLib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF632A7BAE8000CAD911 /* ICSharpCode.SharpZipLib.cpp */; }; + D53CD0EA2A7BAE8100CAD911 /* Mono.Security1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF642A7BAE8000CAD911 /* Mono.Security1.cpp */; }; + D53CD0EB2A7BAE8100CAD911 /* ICSharpCode.SharpZipLib1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF652A7BAE8000CAD911 /* ICSharpCode.SharpZipLib1.cpp */; }; + D53CD0EC2A7BAE8100CAD911 /* BestHTTP6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF662A7BAE8000CAD911 /* BestHTTP6.cpp */; }; + D53CD0ED2A7BAE8100CAD911 /* BestHTTP7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF672A7BAE8000CAD911 /* BestHTTP7.cpp */; }; + D53CD0EE2A7BAE8100CAD911 /* UnityEngine.InputModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF682A7BAE8000CAD911 /* UnityEngine.InputModule_CodeGen.c */; }; + D53CD0EF2A7BAE8100CAD911 /* BestHTTP37.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF692A7BAE8000CAD911 /* BestHTTP37.cpp */; }; + D53CD0F02A7BAE8100CAD911 /* BestHTTP23.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF6A2A7BAE8000CAD911 /* BestHTTP23.cpp */; }; + D53CD0F12A7BAE8100CAD911 /* mscorlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF6B2A7BAE8000CAD911 /* mscorlib.cpp */; }; + D53CD0F22A7BAE8100CAD911 /* mscorlib12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF6C2A7BAE8000CAD911 /* mscorlib12.cpp */; }; + D53CD0F32A7BAE8100CAD911 /* UnityEngine.UnityWebRequestModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF6D2A7BAE8000CAD911 /* UnityEngine.UnityWebRequestModule_CodeGen.c */; }; + D53CD0F42A7BAE8100CAD911 /* Generics48.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF6E2A7BAE8000CAD911 /* Generics48.cpp */; }; + D53CD0F52A7BAE8100CAD911 /* Generics60.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF6F2A7BAE8000CAD911 /* Generics60.cpp */; }; + D53CD0F62A7BAE8100CAD911 /* UnityEngine.DirectorModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF702A7BAE8000CAD911 /* UnityEngine.DirectorModule.cpp */; }; + D53CD0F72A7BAE8100CAD911 /* mscorlib10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF712A7BAE8000CAD911 /* mscorlib10.cpp */; }; + D53CD0F82A7BAE8100CAD911 /* System.Xml11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF722A7BAE8000CAD911 /* System.Xml11.cpp */; }; + D53CD0F92A7BAE8100CAD911 /* BestHTTP35.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF732A7BAE8000CAD911 /* BestHTTP35.cpp */; }; + D53CD0FA2A7BAE8100CAD911 /* BestHTTP21.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF742A7BAE8000CAD911 /* BestHTTP21.cpp */; }; + D53CD0FB2A7BAE8100CAD911 /* Il2CppRgctxTable.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF752A7BAE8000CAD911 /* Il2CppRgctxTable.c */; }; + D53CD0FC2A7BAE8100CAD911 /* UnityClassRegistration.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF762A7BAE8000CAD911 /* UnityClassRegistration.cpp */; }; + D53CD0FD2A7BAE8100CAD911 /* BestHTTP5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF772A7BAE8000CAD911 /* BestHTTP5.cpp */; }; + D53CD0FE2A7BAE8100CAD911 /* ICSharpCode.SharpZipLib2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF782A7BAE8000CAD911 /* ICSharpCode.SharpZipLib2.cpp */; }; + D53CD0FF2A7BAE8100CAD911 /* ICSharpCode.SharpZipLib3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF792A7BAE8000CAD911 /* ICSharpCode.SharpZipLib3.cpp */; }; + D53CD1002A7BAE8100CAD911 /* UnityEngine.InputModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF7A2A7BAE8000CAD911 /* UnityEngine.InputModule.cpp */; }; + D53CD1012A7BAE8100CAD911 /* BestHTTP4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF7B2A7BAE8000CAD911 /* BestHTTP4.cpp */; }; + D53CD1022A7BAE8100CAD911 /* Unity.Notifications.iOS_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF7C2A7BAE8000CAD911 /* Unity.Notifications.iOS_CodeGen.c */; }; + D53CD1032A7BAE8100CAD911 /* BestHTTP20.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF7D2A7BAE8000CAD911 /* BestHTTP20.cpp */; }; + D53CD1042A7BAE8100CAD911 /* UnityEngine.VFXModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF7E2A7BAE8000CAD911 /* UnityEngine.VFXModule.cpp */; }; + D53CD1052A7BAE8100CAD911 /* System.Xml10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF7F2A7BAE8000CAD911 /* System.Xml10.cpp */; }; + D53CD1062A7BAE8100CAD911 /* BestHTTP34.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF802A7BAE8000CAD911 /* BestHTTP34.cpp */; }; + D53CD1072A7BAE8100CAD911 /* UnityEngine.InputLegacyModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF812A7BAE8000CAD911 /* UnityEngine.InputLegacyModule.cpp */; }; + D53CD1082A7BAE8100CAD911 /* mscorlib11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF822A7BAE8000CAD911 /* mscorlib11.cpp */; }; + D53CD1092A7BAE8100CAD911 /* CString1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF832A7BAE8000CAD911 /* CString1.cpp */; }; + D53CD10A2A7BAE8100CAD911 /* UnityEngine.SpriteShapeModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF842A7BAE8000CAD911 /* UnityEngine.SpriteShapeModule_CodeGen.c */; }; + D53CD10B2A7BAE8100CAD911 /* UnityEngine.UIElementsModule11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF852A7BAE8000CAD911 /* UnityEngine.UIElementsModule11.cpp */; }; + D53CD10C2A7BAE8100CAD911 /* UnityEngine.IMGUIModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF862A7BAE8000CAD911 /* UnityEngine.IMGUIModule_CodeGen.c */; }; + D53CD10D2A7BAE8100CAD911 /* UnityEngine.ImageConversionModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF872A7BAE8000CAD911 /* UnityEngine.ImageConversionModule_CodeGen.c */; }; + D53CD10E2A7BAE8100CAD911 /* Generics46.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF882A7BAE8000CAD911 /* Generics46.cpp */; }; + D53CD10F2A7BAE8100CAD911 /* Generics52.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF892A7BAE8000CAD911 /* Generics52.cpp */; }; + D53CD1102A7BAE8100CAD911 /* Il2CppTypeDefinitions.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF8A2A7BAE8000CAD911 /* Il2CppTypeDefinitions.c */; }; + D53CD1112A7BAE8100CAD911 /* mscorlib20.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF8B2A7BAE8000CAD911 /* mscorlib20.cpp */; }; + D53CD1122A7BAE8100CAD911 /* UnityEngine.UI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF8C2A7BAE8000CAD911 /* UnityEngine.UI.cpp */; }; + D53CD1132A7BAE8100CAD911 /* System_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF8D2A7BAE8000CAD911 /* System_CodeGen.c */; }; + D53CD1142A7BAE8100CAD911 /* BestHTTP39.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF8E2A7BAE8000CAD911 /* BestHTTP39.cpp */; }; + D53CD1152A7BAE8100CAD911 /* BestHTTP11.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF8F2A7BAE8000CAD911 /* BestHTTP11.cpp */; }; + D53CD1162A7BAE8100CAD911 /* UnityEngine.IMGUIModule1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF902A7BAE8000CAD911 /* UnityEngine.IMGUIModule1.cpp */; }; + D53CD1172A7BAE8100CAD911 /* BestHTTP9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF912A7BAE8000CAD911 /* BestHTTP9.cpp */; }; + D53CD1182A7BAE8100CAD911 /* BestHTTP8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF922A7BAE8000CAD911 /* BestHTTP8.cpp */; }; + D53CD1192A7BAE8100CAD911 /* UnityEngine.UIModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF932A7BAE8000CAD911 /* UnityEngine.UIModule.cpp */; }; + D53CD11A2A7BAE8100CAD911 /* BestHTTP10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF942A7BAE8000CAD911 /* BestHTTP10.cpp */; }; + D53CD11B2A7BAE8100CAD911 /* BestHTTP38.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF952A7BAE8000CAD911 /* BestHTTP38.cpp */; }; + D53CD11C2A7BAE8100CAD911 /* ICSharpCode.SharpZipLib_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF962A7BAE8000CAD911 /* ICSharpCode.SharpZipLib_CodeGen.c */; }; + D53CD11D2A7BAE8100CAD911 /* mscorlib21.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF972A7BAE8000CAD911 /* mscorlib21.cpp */; }; + D53CD11E2A7BAE8100CAD911 /* Generics53.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF982A7BAE8000CAD911 /* Generics53.cpp */; }; + D53CD11F2A7BAE8100CAD911 /* Generics47.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF992A7BAE8000CAD911 /* Generics47.cpp */; }; + D53CD1202A7BAE8100CAD911 /* UnityEngine.UIElementsModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF9A2A7BAE8000CAD911 /* UnityEngine.UIElementsModule.cpp */; }; + D53CD1212A7BAE8100CAD911 /* UnityEngine.UIElementsModule10.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF9B2A7BAE8000CAD911 /* UnityEngine.UIElementsModule10.cpp */; }; + D53CD1222A7BAE8100CAD911 /* spine-unity.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF9C2A7BAE8000CAD911 /* spine-unity.cpp */; }; + D53CD1232A7BAE8100CAD911 /* UnityEngine.UIElementsModule12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF9D2A7BAE8000CAD911 /* UnityEngine.UIElementsModule12.cpp */; }; + D53CD1242A7BAE8100CAD911 /* AmazingAssets.TerrainToMesh.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF9E2A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh.cpp */; }; + D53CD1252A7BAE8100CAD911 /* UnityEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCF9F2A7BAE8000CAD911 /* UnityEngine.cpp */; }; + D53CD1262A7BAE8100CAD911 /* Generics51.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFA02A7BAE8000CAD911 /* Generics51.cpp */; }; + D53CD1272A7BAE8100CAD911 /* Generics45.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFA12A7BAE8000CAD911 /* Generics45.cpp */; }; + D53CD1282A7BAE8100CAD911 /* spine-unity4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFA22A7BAE8000CAD911 /* spine-unity4.cpp */; }; + D53CD1292A7BAE8100CAD911 /* UnityEngine.SharedInternalsModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFA32A7BAE8000CAD911 /* UnityEngine.SharedInternalsModule_CodeGen.c */; }; + D53CD12A2A7BAE8100CAD911 /* UnityEngine.UnityWebRequestAssetBundleModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFA42A7BAE8000CAD911 /* UnityEngine.UnityWebRequestAssetBundleModule.cpp */; }; + D53CD12B2A7BAE8100CAD911 /* mscorlib_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFA52A7BAE8000CAD911 /* mscorlib_CodeGen.c */; }; + D53CD12C2A7BAE8100CAD911 /* UnityEngine.TextCoreTextEngineModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFA62A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule.cpp */; }; + D53CD12D2A7BAE8100CAD911 /* mscorlib23.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFA72A7BAE8000CAD911 /* mscorlib23.cpp */; }; + D53CD12E2A7BAE8100CAD911 /* Il2CppMetadataRegistration.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFA82A7BAE8000CAD911 /* Il2CppMetadataRegistration.c */; }; + D53CD12F2A7BAE8100CAD911 /* BestHTTP12.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFA92A7BAE8000CAD911 /* BestHTTP12.cpp */; }; + D53CD1302A7BAE8100CAD911 /* UnityEngine.Physics2DModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFAA2A7BAE8000CAD911 /* UnityEngine.Physics2DModule.cpp */; }; + D53CD1312A7BAE8100CAD911 /* BestHTTP13.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFAB2A7BAE8000CAD911 /* BestHTTP13.cpp */; }; + D53CD1322A7BAE8100CAD911 /* Assembly-CSharp40.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFAC2A7BAE8000CAD911 /* Assembly-CSharp40.cpp */; }; + D53CD1332A7BAE8100CAD911 /* mscorlib22.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFAD2A7BAE8000CAD911 /* mscorlib22.cpp */; }; + D53CD1342A7BAE8100CAD911 /* spine-unity5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFAE2A7BAE8000CAD911 /* spine-unity5.cpp */; }; + D53CD1352A7BAE8100CAD911 /* Il2CppGenericMethodDefinitions.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFAF2A7BAE8000CAD911 /* Il2CppGenericMethodDefinitions.c */; }; + D53CD1362A7BAE8100CAD911 /* Generics44.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFB02A7BAE8000CAD911 /* Generics44.cpp */; }; + D53CD1372A7BAE8100CAD911 /* Generics50.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFB12A7BAE8000CAD911 /* Generics50.cpp */; }; + D53CD1382A7BAE8100CAD911 /* Unity.Timeline1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFB22A7BAE8000CAD911 /* Unity.Timeline1.cpp */; }; + D53CD1392A7BAE8100CAD911 /* Generics54.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFB32A7BAE8000CAD911 /* Generics54.cpp */; }; + D53CD13A2A7BAE8100CAD911 /* Generics40.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFB42A7BAE8000CAD911 /* Generics40.cpp */; }; + D53CD13B2A7BAE8100CAD911 /* UnityEngine.AIModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFB52A7BAE8000CAD911 /* UnityEngine.AIModule_CodeGen.c */; }; + D53CD13C2A7BAE8100CAD911 /* spine-unity1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFB62A7BAE8000CAD911 /* spine-unity1.cpp */; }; + D53CD13D2A7BAE8100CAD911 /* UnityEngine.SharedInternalsModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFB72A7BAE8000CAD911 /* UnityEngine.SharedInternalsModule.cpp */; }; + D53CD13E2A7BAE8100CAD911 /* UnityEngine.TextCoreTextEngineModule2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFB82A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule2.cpp */; }; + D53CD13F2A7BAE8100CAD911 /* BestHTTP17.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFB92A7BAE8000CAD911 /* BestHTTP17.cpp */; }; + D53CD1402A7BAE8100CAD911 /* UnityEngine.UIModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFBA2A7BAE8000CAD911 /* UnityEngine.UIModule_CodeGen.c */; }; + D53CD1412A7BAE8100CAD911 /* System.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFBB2A7BAE8000CAD911 /* System.cpp */; }; + D53CD1422A7BAE8100CAD911 /* BestHTTP16.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFBC2A7BAE8000CAD911 /* BestHTTP16.cpp */; }; + D53CD1432A7BAE8100CAD911 /* Mono.Security.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFBD2A7BAE8000CAD911 /* Mono.Security.cpp */; }; + D53CD1442A7BAE8100CAD911 /* UnityEngine.TextCoreTextEngineModule3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFBE2A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule3.cpp */; }; + D53CD1452A7BAE8100CAD911 /* System.Configuration_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFBF2A7BAE8000CAD911 /* System.Configuration_CodeGen.c */; }; + D53CD1462A7BAE8100CAD911 /* Generics41.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFC02A7BAE8000CAD911 /* Generics41.cpp */; }; + D53CD1472A7BAE8100CAD911 /* Generics55.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFC12A7BAE8000CAD911 /* Generics55.cpp */; }; + D53CD1482A7BAE8100CAD911 /* Generics43.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFC22A7BAE8000CAD911 /* Generics43.cpp */; }; + D53CD1492A7BAE8100CAD911 /* Assembly-CSharp-firstpass.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFC32A7BAE8000CAD911 /* Assembly-CSharp-firstpass.cpp */; }; + D53CD14A2A7BAE8100CAD911 /* UnityEngine.TextCoreTextEngineModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFC42A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule_CodeGen.c */; }; + D53CD14B2A7BAE8100CAD911 /* Generics57.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFC52A7BAE8000CAD911 /* Generics57.cpp */; }; + D53CD14C2A7BAE8100CAD911 /* UnityEngine.VRModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFC62A7BAE8000CAD911 /* UnityEngine.VRModule.cpp */; }; + D53CD14D2A7BAE8100CAD911 /* spine-unity2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFC72A7BAE8000CAD911 /* spine-unity2.cpp */; }; + D53CD14E2A7BAE8100CAD911 /* mscorlib19.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFC82A7BAE8000CAD911 /* mscorlib19.cpp */; }; + D53CD14F2A7BAE8100CAD911 /* UnityEngine.TextCoreTextEngineModule1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFC92A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule1.cpp */; }; + D53CD1502A7BAE8100CAD911 /* UnityEngine.SubsystemsModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFCA2A7BAE8000CAD911 /* UnityEngine.SubsystemsModule_CodeGen.c */; }; + D53CD1512A7BAE8100CAD911 /* UnityEngine.GridModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFCB2A7BAE8000CAD911 /* UnityEngine.GridModule.cpp */; }; + D53CD1522A7BAE8100CAD911 /* Il2CppMetadataUsage.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFCC2A7BAE8000CAD911 /* Il2CppMetadataUsage.c */; }; + D53CD1532A7BAE8100CAD911 /* BestHTTP14.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFCD2A7BAE8000CAD911 /* BestHTTP14.cpp */; }; + D53CD1542A7BAE8100CAD911 /* BestHTTP28.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFCE2A7BAE8000CAD911 /* BestHTTP28.cpp */; }; + D53CD1552A7BAE8100CAD911 /* UnityEngine.TerrainModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFCF2A7BAE8000CAD911 /* UnityEngine.TerrainModule.cpp */; }; + D53CD1562A7BAE8100CAD911 /* Debugger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFD02A7BAE8000CAD911 /* Debugger.cpp */; }; + D53CD1572A7BAE8100CAD911 /* System.Runtime.CompilerServices.Unsafe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFD12A7BAE8000CAD911 /* System.Runtime.CompilerServices.Unsafe.cpp */; }; + D53CD1582A7BAE8100CAD911 /* BestHTTP29.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFD22A7BAE8000CAD911 /* BestHTTP29.cpp */; }; + D53CD1592A7BAE8100CAD911 /* Il2CppReversePInvokeWrapperTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFD32A7BAE8000CAD911 /* Il2CppReversePInvokeWrapperTable.cpp */; }; + D53CD15A2A7BAE8100CAD911 /* BestHTTP15.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFD42A7BAE8000CAD911 /* BestHTTP15.cpp */; }; + D53CD15B2A7BAE8100CAD911 /* mscorlib24.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFD52A7BAE8000CAD911 /* mscorlib24.cpp */; }; + D53CD15C2A7BAE8100CAD911 /* mscorlib18.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFD62A7BAE8000CAD911 /* mscorlib18.cpp */; }; + D53CD15D2A7BAE8100CAD911 /* Whinarn.UnityMeshSimplifier.Runtime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFD72A7BAE8000CAD911 /* Whinarn.UnityMeshSimplifier.Runtime.cpp */; }; + D53CD15E2A7BAE8100CAD911 /* spine-unity3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFD82A7BAE8000CAD911 /* spine-unity3.cpp */; }; + D53CD15F2A7BAE8100CAD911 /* UnityEngine.UIElementsNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFD92A7BAE8000CAD911 /* UnityEngine.UIElementsNativeModule.cpp */; }; + D53CD1602A7BAE8100CAD911 /* Generics56.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFDA2A7BAE8000CAD911 /* Generics56.cpp */; }; + D53CD1612A7BAE8100CAD911 /* Generics42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFDB2A7BAE8000CAD911 /* Generics42.cpp */; }; + D53CD1622A7BAE8100CAD911 /* Generics19.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFDC2A7BAE8000CAD911 /* Generics19.cpp */; }; + D53CD1632A7BAE8100CAD911 /* Il2CppInvokerTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFDD2A7BAE8000CAD911 /* Il2CppInvokerTable.cpp */; }; + D53CD1642A7BAE8100CAD911 /* UnityEngine.UI1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFDE2A7BAE8000CAD911 /* UnityEngine.UI1.cpp */; }; + D53CD1652A7BAE8100CAD911 /* Generics25.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFDF2A7BAE8000CAD911 /* Generics25.cpp */; }; + D53CD1662A7BAE8100CAD911 /* Generics31.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFE02A7BAE8000CAD911 /* Generics31.cpp */; }; + D53CD1672A7BAE8100CAD911 /* Mono.Security_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFE12A7BAE8000CAD911 /* Mono.Security_CodeGen.c */; }; + D53CD1682A7BAE8100CAD911 /* UnityEngine.TerrainModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFE22A7BAE8000CAD911 /* UnityEngine.TerrainModule_CodeGen.c */; }; + D53CD1692A7BAE8100CAD911 /* Assembly-CSharp1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFE32A7BAE8000CAD911 /* Assembly-CSharp1.cpp */; }; + D53CD16A2A7BAE8100CAD911 /* Assembly-CSharp35.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFE42A7BAE8000CAD911 /* Assembly-CSharp35.cpp */; }; + D53CD16B2A7BAE8100CAD911 /* Assembly-CSharp21.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFE52A7BAE8000CAD911 /* Assembly-CSharp21.cpp */; }; + D53CD16C2A7BAE8100CAD911 /* UnityEngine.AssetBundleModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFE62A7BAE8000CAD911 /* UnityEngine.AssetBundleModule_CodeGen.c */; }; + D53CD16D2A7BAE8100CAD911 /* UnityEngine.UIElementsModule3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFE72A7BAE8000CAD911 /* UnityEngine.UIElementsModule3.cpp */; }; + D53CD16E2A7BAE8100CAD911 /* Google.Protobuf3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFE82A7BAE8000CAD911 /* Google.Protobuf3.cpp */; }; + D53CD16F2A7BAE8100CAD911 /* Google.Protobuf2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFE92A7BAE8000CAD911 /* Google.Protobuf2.cpp */; }; + D53CD1702A7BAE8100CAD911 /* UnityEngine.SubsystemsModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFEA2A7BAE8000CAD911 /* UnityEngine.SubsystemsModule.cpp */; }; + D53CD1712A7BAE8100CAD911 /* UnityEngine.UIElementsModule2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFEB2A7BAE8000CAD911 /* UnityEngine.UIElementsModule2.cpp */; }; + D53CD1722A7BAE8100CAD911 /* UnityEngine.CoreModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFEC2A7BAE8000CAD911 /* UnityEngine.CoreModule.cpp */; }; + D53CD1732A7BAE8100CAD911 /* Il2CppGenericClassTable.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFED2A7BAE8000CAD911 /* Il2CppGenericClassTable.c */; }; + D53CD1742A7BAE8100CAD911 /* UnityEngine.GridModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFEE2A7BAE8000CAD911 /* UnityEngine.GridModule_CodeGen.c */; }; + D53CD1752A7BAE8100CAD911 /* System.Xml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFEF2A7BAE8000CAD911 /* System.Xml.cpp */; }; + D53CD1762A7BAE8100CAD911 /* UnityEngine.CoreModule1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFF02A7BAE8000CAD911 /* UnityEngine.CoreModule1.cpp */; }; + D53CD1772A7BAE8100CAD911 /* Assembly-CSharp20.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFF12A7BAE8000CAD911 /* Assembly-CSharp20.cpp */; }; + D53CD1782A7BAE8100CAD911 /* Assembly-CSharp34.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFF22A7BAE8000CAD911 /* Assembly-CSharp34.cpp */; }; + D53CD1792A7BAE8100CAD911 /* System.Numerics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFF32A7BAE8000CAD911 /* System.Numerics.cpp */; }; + D53CD17A2A7BAE8100CAD911 /* Il2CppGenericInstDefinitions.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFF42A7BAE8000CAD911 /* Il2CppGenericInstDefinitions.c */; }; + D53CD17B2A7BAE8100CAD911 /* mscorlib1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFF52A7BAE8000CAD911 /* mscorlib1.cpp */; }; + D53CD17C2A7BAE8100CAD911 /* Generics30.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFF62A7BAE8000CAD911 /* Generics30.cpp */; }; + D53CD17D2A7BAE8100CAD911 /* Generics24.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFF72A7BAE8000CAD911 /* Generics24.cpp */; }; + D53CD17E2A7BAE8100CAD911 /* Generics18.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFF82A7BAE8000CAD911 /* Generics18.cpp */; }; + D53CD17F2A7BAE8100CAD911 /* Google.Protobuf_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFF92A7BAE8000CAD911 /* Google.Protobuf_CodeGen.c */; }; + D53CD1802A7BAE8100CAD911 /* UnityEngine.PhysicsModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFFA2A7BAE8000CAD911 /* UnityEngine.PhysicsModule.cpp */; }; + D53CD1812A7BAE8100CAD911 /* Il2CppCCalculateTypeValues1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFFB2A7BAE8000CAD911 /* Il2CppCCalculateTypeValues1.cpp */; }; + D53CD1822A7BAE8100CAD911 /* UnityEngine.TextCoreFontEngineModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFFC2A7BAE8000CAD911 /* UnityEngine.TextCoreFontEngineModule.cpp */; }; + D53CD1832A7BAE8100CAD911 /* UnityEngine.UI2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFFD2A7BAE8000CAD911 /* UnityEngine.UI2.cpp */; }; + D53CD1842A7BAE8100CAD911 /* Generics32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFFE2A7BAE8000CAD911 /* Generics32.cpp */; }; + D53CD1852A7BAE8100CAD911 /* Generics26.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CCFFF2A7BAE8000CAD911 /* Generics26.cpp */; }; + D53CD1862A7BAE8100CAD911 /* mscorlib3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0002A7BAE8000CAD911 /* mscorlib3.cpp */; }; + D53CD1872A7BAE8100CAD911 /* UnityEngine.GameCenterModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0012A7BAE8000CAD911 /* UnityEngine.GameCenterModule_CodeGen.c */; }; + D53CD1882A7BAE8100CAD911 /* Assembly-CSharp2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0022A7BAE8000CAD911 /* Assembly-CSharp2.cpp */; }; + D53CD1892A7BAE8100CAD911 /* Assembly-CSharp22.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0032A7BAE8000CAD911 /* Assembly-CSharp22.cpp */; }; + D53CD18A2A7BAE8100CAD911 /* Assembly-CSharp36.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0042A7BAE8000CAD911 /* Assembly-CSharp36.cpp */; }; + D53CD18B2A7BAE8100CAD911 /* UnityEngine.CoreModule3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0052A7BAE8000CAD911 /* UnityEngine.CoreModule3.cpp */; }; + D53CD18C2A7BAE8100CAD911 /* UnityEngine.TilemapModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0062A7BAE8000CAD911 /* UnityEngine.TilemapModule.cpp */; }; + D53CD18D2A7BAE8100CAD911 /* UnityEngine.ParticleSystemModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0072A7BAE8000CAD911 /* UnityEngine.ParticleSystemModule.cpp */; }; + D53CD18E2A7BAE8100CAD911 /* Google.Protobuf1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0082A7BAE8000CAD911 /* Google.Protobuf1.cpp */; }; + D53CD18F2A7BAE8100CAD911 /* UnityEngine.UIElementsModule1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0092A7BAE8000CAD911 /* UnityEngine.UIElementsModule1.cpp */; }; + D53CD1902A7BAE8100CAD911 /* UnityEngine.UnityAnalyticsModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD00A2A7BAE8000CAD911 /* UnityEngine.UnityAnalyticsModule_CodeGen.c */; }; + D53CD1912A7BAE8100CAD911 /* Il2CppCCFieldValuesTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD00B2A7BAE8000CAD911 /* Il2CppCCFieldValuesTable.cpp */; }; + D53CD1922A7BAE8100CAD911 /* UnityEngine.ImageConversionModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD00C2A7BAE8000CAD911 /* UnityEngine.ImageConversionModule.cpp */; }; + D53CD1932A7BAE8100CAD911 /* UnityEngine.CoreModule2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD00D2A7BAE8000CAD911 /* UnityEngine.CoreModule2.cpp */; }; + D53CD1942A7BAE8100CAD911 /* Assembly-CSharp37.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD00E2A7BAE8000CAD911 /* Assembly-CSharp37.cpp */; }; + D53CD1952A7BAE8100CAD911 /* Assembly-CSharp23.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD00F2A7BAE8000CAD911 /* Assembly-CSharp23.cpp */; }; + D53CD1962A7BAE8100CAD911 /* Assembly-CSharp3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0102A7BAE8000CAD911 /* Assembly-CSharp3.cpp */; }; + D53CD1972A7BAE8100CAD911 /* mscorlib2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0112A7BAE8000CAD911 /* mscorlib2.cpp */; }; + D53CD1982A7BAE8100CAD911 /* System.Core_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0122A7BAE8000CAD911 /* System.Core_CodeGen.c */; }; + D53CD1992A7BAE8100CAD911 /* Generics27.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0132A7BAE8000CAD911 /* Generics27.cpp */; }; + D53CD19A2A7BAE8100CAD911 /* Generics33.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0142A7BAE8000CAD911 /* Generics33.cpp */; }; + D53CD19B2A7BAE8100CAD911 /* UnityEngine.UI3.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0152A7BAE8000CAD911 /* UnityEngine.UI3.cpp */; }; + D53CD19C2A7BAE8100CAD911 /* Unity.Timeline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0162A7BAE8000CAD911 /* Unity.Timeline.cpp */; }; + D53CD19D2A7BAE8100CAD911 /* GenericMethods.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0172A7BAE8000CAD911 /* GenericMethods.cpp */; }; + D53CD19E2A7BAE8100CAD911 /* Generics37.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0182A7BAE8000CAD911 /* Generics37.cpp */; }; + D53CD19F2A7BAE8100CAD911 /* Generics23.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0192A7BAE8000CAD911 /* Generics23.cpp */; }; + D53CD1A02A7BAE8100CAD911 /* UnityEngine.TilemapModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD01A2A7BAE8000CAD911 /* UnityEngine.TilemapModule_CodeGen.c */; }; + D53CD1A12A7BAE8100CAD911 /* Debugger_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD01B2A7BAE8000CAD911 /* Debugger_CodeGen.c */; }; + D53CD1A22A7BAE8100CAD911 /* mscorlib6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD01C2A7BAE8000CAD911 /* mscorlib6.cpp */; }; + D53CD1A32A7BAE8100CAD911 /* GenericMethods8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD01D2A7BAE8000CAD911 /* GenericMethods8.cpp */; }; + D53CD1A42A7BAE8100CAD911 /* UnresolvedVirtualCallStubs.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD01E2A7BAE8000CAD911 /* UnresolvedVirtualCallStubs.cpp */; }; + D53CD1A52A7BAE8100CAD911 /* Assembly-CSharp27.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD01F2A7BAE8000CAD911 /* Assembly-CSharp27.cpp */; }; + D53CD1A62A7BAE8100CAD911 /* UnityEngine.VideoModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0202A7BAE8000CAD911 /* UnityEngine.VideoModule.cpp */; }; + D53CD1A72A7BAE8100CAD911 /* Assembly-CSharp33.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0212A7BAE8000CAD911 /* Assembly-CSharp33.cpp */; }; + D53CD1A82A7BAE8100CAD911 /* Assembly-CSharp7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0222A7BAE8000CAD911 /* Assembly-CSharp7.cpp */; }; + D53CD1A92A7BAE8100CAD911 /* System9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0232A7BAE8000CAD911 /* System9.cpp */; }; + D53CD1AA2A7BAE8100CAD911 /* UnityEngine.UIElementsModule5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0242A7BAE8000CAD911 /* UnityEngine.UIElementsModule5.cpp */; }; + D53CD1AB2A7BAE8100CAD911 /* UnityEngine.UIElementsModule4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0252A7BAE8100CAD911 /* UnityEngine.UIElementsModule4.cpp */; }; + D53CD1AC2A7BAE8100CAD911 /* Google.Protobuf4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0262A7BAE8100CAD911 /* Google.Protobuf4.cpp */; }; + D53CD1AD2A7BAE8100CAD911 /* UnityEngine.IMGUIModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0272A7BAE8100CAD911 /* UnityEngine.IMGUIModule.cpp */; }; + D53CD1AE2A7BAE8100CAD911 /* System.Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0282A7BAE8100CAD911 /* System.Core.cpp */; }; + D53CD1AF2A7BAE8100CAD911 /* System8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0292A7BAE8100CAD911 /* System8.cpp */; }; + D53CD1B02A7BAE8100CAD911 /* Assembly-CSharp6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD02A2A7BAE8100CAD911 /* Assembly-CSharp6.cpp */; }; + D53CD1B12A7BAE8100CAD911 /* Assembly-CSharp32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD02B2A7BAE8100CAD911 /* Assembly-CSharp32.cpp */; }; + D53CD1B22A7BAE8100CAD911 /* Assembly-CSharp26.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD02C2A7BAE8100CAD911 /* Assembly-CSharp26.cpp */; }; + D53CD1B32A7BAE8100CAD911 /* UnityEngine.InputLegacyModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD02D2A7BAE8100CAD911 /* UnityEngine.InputLegacyModule_CodeGen.c */; }; + D53CD1B42A7BAE8100CAD911 /* GenericMethods9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD02E2A7BAE8100CAD911 /* GenericMethods9.cpp */; }; + D53CD1B52A7BAE8100CAD911 /* mscorlib7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD02F2A7BAE8100CAD911 /* mscorlib7.cpp */; }; + D53CD1B62A7BAE8100CAD911 /* Generics22.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0302A7BAE8100CAD911 /* Generics22.cpp */; }; + D53CD1B72A7BAE8100CAD911 /* Generics36.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0312A7BAE8100CAD911 /* Generics36.cpp */; }; + D53CD1B82A7BAE8100CAD911 /* UnityEngine.AIModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0322A7BAE8100CAD911 /* UnityEngine.AIModule.cpp */; }; + D53CD1B92A7BAE8200CAD911 /* Unity.Timeline_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0332A7BAE8100CAD911 /* Unity.Timeline_CodeGen.c */; }; + D53CD1BA2A7BAE8200CAD911 /* UnityEngine.ParticleSystemModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0342A7BAE8100CAD911 /* UnityEngine.ParticleSystemModule_CodeGen.c */; }; + D53CD1BB2A7BAE8200CAD911 /* Generics20.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0352A7BAE8100CAD911 /* Generics20.cpp */; }; + D53CD1BC2A7BAE8200CAD911 /* Generics34.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0362A7BAE8100CAD911 /* Generics34.cpp */; }; + D53CD1BD2A7BAE8200CAD911 /* mscorlib5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0372A7BAE8100CAD911 /* mscorlib5.cpp */; }; + D53CD1BE2A7BAE8200CAD911 /* UnityEngine.AndroidJNIModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0382A7BAE8100CAD911 /* UnityEngine.AndroidJNIModule.cpp */; }; + D53CD1BF2A7BAE8200CAD911 /* Assembly-CSharp_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0392A7BAE8100CAD911 /* Assembly-CSharp_CodeGen.c */; }; + D53CD1C02A7BAE8200CAD911 /* Assembly-CSharp30.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD03A2A7BAE8100CAD911 /* Assembly-CSharp30.cpp */; }; + D53CD1C12A7BAE8200CAD911 /* Assembly-CSharp24.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD03B2A7BAE8100CAD911 /* Assembly-CSharp24.cpp */; }; + D53CD1C22A7BAE8200CAD911 /* Whinarn.UnityMeshSimplifier.Runtime_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD03C2A7BAE8100CAD911 /* Whinarn.UnityMeshSimplifier.Runtime_CodeGen.c */; }; + D53CD1C32A7BAE8200CAD911 /* Assembly-CSharp4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD03D2A7BAE8100CAD911 /* Assembly-CSharp4.cpp */; }; + D53CD1C42A7BAE8200CAD911 /* Assembly-CSharp18.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD03E2A7BAE8100CAD911 /* Assembly-CSharp18.cpp */; }; + D53CD1C52A7BAE8200CAD911 /* UnityEngine.UnityWebRequestAudioModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD03F2A7BAE8100CAD911 /* UnityEngine.UnityWebRequestAudioModule.cpp */; }; + D53CD1C62A7BAE8200CAD911 /* System.Numerics_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0402A7BAE8100CAD911 /* System.Numerics_CodeGen.c */; }; + D53CD1C72A7BAE8200CAD911 /* Generics8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0412A7BAE8100CAD911 /* Generics8.cpp */; }; + D53CD1C82A7BAE8200CAD911 /* UnityEngine.AudioModule_CodeGen.c in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0422A7BAE8100CAD911 /* UnityEngine.AudioModule_CodeGen.c */; }; + D53CD1C92A7BAE8200CAD911 /* System.Xml9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0432A7BAE8100CAD911 /* System.Xml9.cpp */; }; + D53CD1CA2A7BAE8200CAD911 /* UnityEngine.UIElementsModule6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0442A7BAE8100CAD911 /* UnityEngine.UIElementsModule6.cpp */; }; + D53CD1CB2A7BAE8200CAD911 /* UnityEngine.UIElementsModule7.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0452A7BAE8100CAD911 /* UnityEngine.UIElementsModule7.cpp */; }; + D53CD1CC2A7BAE8200CAD911 /* System.Xml8.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0462A7BAE8100CAD911 /* System.Xml8.cpp */; }; + D53CD1CD2A7BAE8200CAD911 /* Generics9.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0472A7BAE8100CAD911 /* Generics9.cpp */; }; + D53CD1CE2A7BAE8200CAD911 /* Assembly-CSharp19.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0482A7BAE8100CAD911 /* Assembly-CSharp19.cpp */; }; + D53CD1CF2A7BAE8200CAD911 /* Assembly-CSharp5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0492A7BAE8100CAD911 /* Assembly-CSharp5.cpp */; }; + D53CD1D02A7BAE8200CAD911 /* Assembly-CSharp25.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD04A2A7BAE8100CAD911 /* Assembly-CSharp25.cpp */; }; + D53CD1D12A7BAE8200CAD911 /* Unity.Notifications.iOS.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD04B2A7BAE8100CAD911 /* Unity.Notifications.iOS.cpp */; }; + D53CD1D22A7BAE8200CAD911 /* Assembly-CSharp31.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD04C2A7BAE8100CAD911 /* Assembly-CSharp31.cpp */; }; + D53CD1D32A7BAE8200CAD911 /* Generics.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD04D2A7BAE8100CAD911 /* Generics.cpp */; }; + D53CD1D42A7BAE8200CAD911 /* UnityEngine.UnityWebRequestModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD04E2A7BAE8100CAD911 /* UnityEngine.UnityWebRequestModule.cpp */; }; + D53CD1D52A7BAE8200CAD911 /* mscorlib4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD04F2A7BAE8100CAD911 /* mscorlib4.cpp */; }; + D53CD1D62A7BAE8200CAD911 /* Generics35.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0502A7BAE8100CAD911 /* Generics35.cpp */; }; + D53CD1D72A7BAE8200CAD911 /* Generics21.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D53CD0512A7BAE8100CAD911 /* Generics21.cpp */; }; D59AB8472A68FC2200433200 /* StoreObserver.m in Sources */ = {isa = PBXBuildFile; fileRef = D59AB8462A68FC2200433200 /* StoreObserver.m */; }; D59AB84C2A68FC8B00433200 /* AppConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = D59AB84B2A68FC8B00433200 /* AppConfiguration.m */; }; D59AB84F2A68FE8E00433200 /* StoreManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D59AB84D2A68FE8E00433200 /* StoreManager.m */; }; @@ -325,7 +573,6 @@ D59AB85E2A6A500900433200 /* SKProduct+SKProductAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = D59AB85C2A6A500900433200 /* SKProduct+SKProductAdditions.m */; }; D5BF397629C9B79400EC6351 /* UIViewController+Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = D5BF397529C9B79400EC6351 /* UIViewController+Logger.mm */; }; D5BF397829C9B8C000EC6351 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = D5BF397729C9B8C000EC6351 /* GoogleService-Info.plist */; }; - D5C03B702A49A808002E758D /* Data in Resources */ = {isa = PBXBuildFile; fileRef = D5C03B6F2A49A808002E758D /* Data */; }; D5DE834F29C831FE0029E408 /* UIViewController+Share.mm in Sources */ = {isa = PBXBuildFile; fileRef = D5DE834E29C831FE0029E408 /* UIViewController+Share.mm */; }; D73241D4841253D964E0EAE6 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F50947088C745C27111D9D3F /* StoreKit.framework */; }; /* End PBXBuildFile section */ @@ -1199,165 +1446,419 @@ D50CEEEA29C043ED002CC932 /* WebPageViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WebPageViewController.m; sourceTree = ""; }; D526FA3B29949633002A2290 /* Unity-iPhone.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; name = "Unity-iPhone.entitlements"; path = "Unity-iPhone/Unity-iPhone.entitlements"; sourceTree = ""; }; D526FA3C299498E3002A2290 /* cocos2d_libs.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = cocos2d_libs.xcodeproj; path = ../../crypto/cocos_js/build/cocos2d_libs.xcodeproj; sourceTree = ""; }; - D55758EB2A5FAC15009369FC /* Il2CppGenericAdjustorThunkTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericAdjustorThunkTable.c; sourceTree = ""; }; - D55758EC2A5FAC15009369FC /* Generics10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics10.cpp; sourceTree = ""; }; - D55758ED2A5FAC15009369FC /* mscorlib9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib9.cpp; sourceTree = ""; }; - D55758EE2A5FAC15009369FC /* UnityEngine.UnityAnalyticsModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UnityAnalyticsModule.cpp; sourceTree = ""; }; - D55758EF2A5FAC15009369FC /* Il2CppGenericMethodTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericMethodTable.c; sourceTree = ""; }; - D55758F02A5FAC15009369FC /* Generics4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics4.cpp; sourceTree = ""; }; - D55758F12A5FAC15009369FC /* Generics5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics5.cpp; sourceTree = ""; }; - D55758F22A5FAC15009369FC /* System.Xml_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = System.Xml_CodeGen.c; sourceTree = ""; }; - D55758F32A5FAC15009369FC /* GenericMethods6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods6.cpp; sourceTree = ""; }; - D55758F42A5FAC15009369FC /* mscorlib8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib8.cpp; sourceTree = ""; }; - D55758F52A5FAC15009369FC /* Generics11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics11.cpp; sourceTree = ""; }; - D55758F62A5FAC15009369FC /* UnityEngine.Physics2DModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.Physics2DModule_CodeGen.c; sourceTree = ""; }; - D55758F72A5FAC15009369FC /* Il2CppCCTypeValuesTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCTypeValuesTable.cpp; sourceTree = ""; }; - D55758F82A5FAC15009369FC /* Generics13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics13.cpp; sourceTree = ""; }; - D55758F92A5FAC15009369FC /* GenericMethods4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods4.cpp; sourceTree = ""; }; - D55758FA2A5FAC15009369FC /* Il2CppInteropDataTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppInteropDataTable.cpp; sourceTree = ""; }; - D55758FB2A5FAC15009369FC /* Generics7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics7.cpp; sourceTree = ""; }; - D55758FC2A5FAC15009369FC /* UnityEngine.UIElementsModule9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule9.cpp; sourceTree = ""; }; - D55758FD2A5FAC15009369FC /* UnityEngine.UIElementsModule8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule8.cpp; sourceTree = ""; }; - D55758FE2A5FAC15009369FC /* UnityICallRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityICallRegistration.cpp; sourceTree = ""; }; - D55758FF2A5FAC15009369FC /* Generics6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics6.cpp; sourceTree = ""; }; - D55759002A5FAC15009369FC /* GenericMethods5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods5.cpp; sourceTree = ""; }; - D55759012A5FAC15009369FC /* UnityEngine_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine_CodeGen.c; sourceTree = ""; }; - D55759022A5FAC15009369FC /* Generics12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics12.cpp; sourceTree = ""; }; - D55759032A5FAC15009369FC /* Generics16.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics16.cpp; sourceTree = ""; }; - D55759042A5FAC15009369FC /* GenericMethods1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods1.cpp; sourceTree = ""; }; - D55759052A5FAC15009369FC /* UnityEngine.UIElementsNativeModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UIElementsNativeModule_CodeGen.c; sourceTree = ""; }; - D55759062A5FAC15009369FC /* Generics2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics2.cpp; sourceTree = ""; }; - D55759072A5FAC15009369FC /* UnityEngine.TextCoreFontEngineModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.TextCoreFontEngineModule_CodeGen.c; sourceTree = ""; }; - D55759082A5FAC15009369FC /* UnityEngine.PhysicsModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.PhysicsModule_CodeGen.c; sourceTree = ""; }; - D55759092A5FAC15009369FC /* System1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System1.cpp; sourceTree = ""; }; - D557590A2A5FAC15009369FC /* Generics3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics3.cpp; sourceTree = ""; }; - D557590B2A5FAC15009369FC /* UnityEngine.AndroidJNIModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.AndroidJNIModule_CodeGen.c; sourceTree = ""; }; - D557590C2A5FAC15009369FC /* Assembly-CSharp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp.cpp"; sourceTree = ""; }; - D557590D2A5FAC15009369FC /* Generics17.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics17.cpp; sourceTree = ""; }; - D557590E2A5FAC15009369FC /* UnityEngine.UI_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UI_CodeGen.c; sourceTree = ""; }; - D557590F2A5FAC15009369FC /* Generics15.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics15.cpp; sourceTree = ""; }; - D55759102A5FAC15009369FC /* UnityEngine.SpriteShapeModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.SpriteShapeModule.cpp; sourceTree = ""; }; - D55759112A5FAC15009369FC /* UnityEngine.TextRenderingModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextRenderingModule.cpp; sourceTree = ""; }; - D55759122A5FAC15009369FC /* GenericMethods2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods2.cpp; sourceTree = ""; }; - D55759132A5FAC15009369FC /* System3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System3.cpp; sourceTree = ""; }; - D55759142A5FAC15009369FC /* Generics1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics1.cpp; sourceTree = ""; }; - D55759152A5FAC15009369FC /* __Generated_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __Generated_CodeGen.c; sourceTree = ""; }; - D55759162A5FAC15009369FC /* System.Configuration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Configuration.cpp; sourceTree = ""; }; - D55759172A5FAC15009369FC /* Il2CppCodeRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCodeRegistration.cpp; sourceTree = ""; }; - D55759182A5FAC15009369FC /* System2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System2.cpp; sourceTree = ""; }; - D55759192A5FAC15009369FC /* Il2CppCCalculateFieldValues1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCalculateFieldValues1.cpp; sourceTree = ""; }; - D557591A2A5FAC15009369FC /* __Generated.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = __Generated.cpp; sourceTree = ""; }; - D557591B2A5FAC15009369FC /* GenericMethods3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods3.cpp; sourceTree = ""; }; - D557591C2A5FAC15009369FC /* Generics14.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics14.cpp; sourceTree = ""; }; - D557591D2A5FAC15009369FC /* mscorlib15.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib15.cpp; sourceTree = ""; }; - D557591E2A5FAC15009369FC /* UnityEngine.UIElementsModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UIElementsModule_CodeGen.c; sourceTree = ""; }; - D557591F2A5FAC15009369FC /* Il2CppCCalculateTypeValues.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCalculateTypeValues.cpp; sourceTree = ""; }; - D55759202A5FAC15009369FC /* Il2CppCCalculateFieldValues.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCalculateFieldValues.cpp; sourceTree = ""; }; - D55759212A5FAC15009369FC /* UnityEngine.AudioModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.AudioModule.cpp; sourceTree = ""; }; - D55759222A5FAC15009369FC /* Il2CppGenericMethodPointerTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericMethodPointerTable.c; sourceTree = ""; }; - D55759232A5FAC15009369FC /* mscorlib14.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib14.cpp; sourceTree = ""; }; - D55759242A5FAC15009369FC /* UnityEngine.CoreModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.CoreModule_CodeGen.c; sourceTree = ""; }; - D55759252A5FAC15009369FC /* UnityEngine.AnimationModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.AnimationModule_CodeGen.c; sourceTree = ""; }; - D55759262A5FAC15009369FC /* UnityEngine.AnimationModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.AnimationModule.cpp; sourceTree = ""; }; - D55759272A5FAC15009369FC /* UnityEngine.TextRenderingModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.TextRenderingModule_CodeGen.c; sourceTree = ""; }; - D55759282A5FAC15009369FC /* mscorlib16.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib16.cpp; sourceTree = ""; }; - D55759292A5FAC15009369FC /* mscorlib17.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib17.cpp; sourceTree = ""; }; - D557592A2A5FAC15009369FC /* UnityEngine.GameCenterModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.GameCenterModule.cpp; sourceTree = ""; }; - D557592B2A5FAC15009369FC /* mscorlib13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib13.cpp; sourceTree = ""; }; - D557592C2A5FAC15009369FC /* mscorlib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib.cpp; sourceTree = ""; }; - D557592D2A5FAC15009369FC /* mscorlib12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib12.cpp; sourceTree = ""; }; - D557592E2A5FAC15009369FC /* UnityEngine.UnityWebRequestModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UnityWebRequestModule_CodeGen.c; sourceTree = ""; }; - D557592F2A5FAC15009369FC /* mscorlib10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib10.cpp; sourceTree = ""; }; - D55759302A5FAC15009369FC /* Il2CppRgctxTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppRgctxTable.c; sourceTree = ""; }; - D55759312A5FAC15009369FC /* UnityClassRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityClassRegistration.cpp; sourceTree = ""; }; - D55759322A5FAC15009369FC /* UnityEngine.InputLegacyModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.InputLegacyModule.cpp; sourceTree = ""; }; - D55759332A5FAC15009369FC /* mscorlib11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib11.cpp; sourceTree = ""; }; - D55759342A5FAC15009369FC /* UnityEngine.SpriteShapeModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.SpriteShapeModule_CodeGen.c; sourceTree = ""; }; - D55759352A5FAC15009369FC /* UnityEngine.UIElementsModule11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule11.cpp; sourceTree = ""; }; - D55759362A5FAC15009369FC /* UnityEngine.IMGUIModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.IMGUIModule_CodeGen.c; sourceTree = ""; }; - D55759372A5FAC15009369FC /* Il2CppTypeDefinitions.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppTypeDefinitions.c; sourceTree = ""; }; - D55759382A5FAC15009369FC /* UnityEngine.UI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UI.cpp; sourceTree = ""; }; - D55759392A5FAC15009369FC /* System_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = System_CodeGen.c; sourceTree = ""; }; - D557593A2A5FAC15009369FC /* UnityEngine.IMGUIModule1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.IMGUIModule1.cpp; sourceTree = ""; }; - D557593B2A5FAC15009369FC /* UnityEngine.UIModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIModule.cpp; sourceTree = ""; }; - D557593C2A5FAC15009369FC /* UnityEngine.UIElementsModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule.cpp; sourceTree = ""; }; - D557593D2A5FAC15009369FC /* UnityEngine.UIElementsModule10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule10.cpp; sourceTree = ""; }; - D557593E2A5FAC15009369FC /* UnityEngine.UIElementsModule12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule12.cpp; sourceTree = ""; }; - D557593F2A5FAC15009369FC /* UnityEngine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.cpp; sourceTree = ""; }; - D55759402A5FAC15009369FC /* UnityEngine.SharedInternalsModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.SharedInternalsModule_CodeGen.c; sourceTree = ""; }; - D55759412A5FAC15009369FC /* mscorlib_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mscorlib_CodeGen.c; sourceTree = ""; }; - D55759422A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextCoreTextEngineModule.cpp; sourceTree = ""; }; - D55759432A5FAC15009369FC /* Il2CppMetadataRegistration.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppMetadataRegistration.c; sourceTree = ""; }; - D55759442A5FAC15009369FC /* UnityEngine.Physics2DModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.Physics2DModule.cpp; sourceTree = ""; }; - D55759452A5FAC15009369FC /* Il2CppGenericMethodDefinitions.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericMethodDefinitions.c; sourceTree = ""; }; - D55759462A5FAC15009369FC /* UnityEngine.SharedInternalsModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.SharedInternalsModule.cpp; sourceTree = ""; }; - D55759472A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextCoreTextEngineModule2.cpp; sourceTree = ""; }; - D55759482A5FAC15009369FC /* UnityEngine.UIModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UIModule_CodeGen.c; sourceTree = ""; }; - D55759492A5FAC15009369FC /* System.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.cpp; sourceTree = ""; }; - D557594A2A5FAC15009369FC /* Mono.Security.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Mono.Security.cpp; sourceTree = ""; }; - D557594B2A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextCoreTextEngineModule3.cpp; sourceTree = ""; }; - D557594C2A5FAC15009369FC /* System.Configuration_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = System.Configuration_CodeGen.c; sourceTree = ""; }; - D557594D2A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.TextCoreTextEngineModule_CodeGen.c; sourceTree = ""; }; - D557594E2A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextCoreTextEngineModule1.cpp; sourceTree = ""; }; - D557594F2A5FAC15009369FC /* UnityEngine.GridModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.GridModule.cpp; sourceTree = ""; }; - D55759502A5FAC15009369FC /* Il2CppMetadataUsage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppMetadataUsage.c; sourceTree = ""; }; - D55759512A5FAC15009369FC /* Il2CppReversePInvokeWrapperTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppReversePInvokeWrapperTable.cpp; sourceTree = ""; }; - D55759522A5FAC15009369FC /* UnityEngine.UIElementsNativeModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsNativeModule.cpp; sourceTree = ""; }; - D55759532A5FAC15009369FC /* Generics19.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics19.cpp; sourceTree = ""; }; - D55759542A5FAC15009369FC /* Il2CppInvokerTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppInvokerTable.cpp; sourceTree = ""; }; - D55759552A5FAC15009369FC /* UnityEngine.UI1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UI1.cpp; sourceTree = ""; }; - D55759562A5FAC15009369FC /* Generics25.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics25.cpp; sourceTree = ""; }; - D55759572A5FAC15009369FC /* Mono.Security_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Mono.Security_CodeGen.c; sourceTree = ""; }; - D55759582A5FAC15009369FC /* UnityEngine.UIElementsModule3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule3.cpp; sourceTree = ""; }; - D55759592A5FAC15009369FC /* UnityEngine.UIElementsModule2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule2.cpp; sourceTree = ""; }; - D557595A2A5FAC15009369FC /* UnityEngine.CoreModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.CoreModule.cpp; sourceTree = ""; }; - D557595B2A5FAC15009369FC /* Il2CppGenericClassTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericClassTable.c; sourceTree = ""; }; - D557595C2A5FAC15009369FC /* UnityEngine.GridModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.GridModule_CodeGen.c; sourceTree = ""; }; - D557595D2A5FAC15009369FC /* System.Xml.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml.cpp; sourceTree = ""; }; - D557595E2A5FAC15009369FC /* UnityEngine.CoreModule1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.CoreModule1.cpp; sourceTree = ""; }; - D557595F2A5FAC15009369FC /* Il2CppGenericInstDefinitions.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericInstDefinitions.c; sourceTree = ""; }; - D55759602A5FAC15009369FC /* mscorlib1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib1.cpp; sourceTree = ""; }; - D55759612A5FAC15009369FC /* Generics24.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics24.cpp; sourceTree = ""; }; - D55759622A5FAC15009369FC /* Generics18.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics18.cpp; sourceTree = ""; }; - D55759632A5FAC15009369FC /* UnityEngine.PhysicsModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.PhysicsModule.cpp; sourceTree = ""; }; - D55759642A5FAC15009369FC /* UnityEngine.TextCoreFontEngineModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextCoreFontEngineModule.cpp; sourceTree = ""; }; - D55759652A5FAC15009369FC /* UnityEngine.UI2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UI2.cpp; sourceTree = ""; }; - D55759662A5FAC15009369FC /* Generics26.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics26.cpp; sourceTree = ""; }; - D55759672A5FAC15009369FC /* mscorlib3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib3.cpp; sourceTree = ""; }; - D55759682A5FAC16009369FC /* UnityEngine.GameCenterModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.GameCenterModule_CodeGen.c; sourceTree = ""; }; - D55759692A5FAC16009369FC /* UnityEngine.TilemapModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TilemapModule.cpp; sourceTree = ""; }; - D557596A2A5FAC16009369FC /* UnityEngine.UIElementsModule1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule1.cpp; sourceTree = ""; }; - D557596B2A5FAC16009369FC /* UnityEngine.UnityAnalyticsModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UnityAnalyticsModule_CodeGen.c; sourceTree = ""; }; - D557596C2A5FAC16009369FC /* Il2CppCCFieldValuesTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCFieldValuesTable.cpp; sourceTree = ""; }; - D557596D2A5FAC16009369FC /* mscorlib2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib2.cpp; sourceTree = ""; }; - D557596E2A5FAC16009369FC /* System.Core_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = System.Core_CodeGen.c; sourceTree = ""; }; - D557596F2A5FAC16009369FC /* Generics27.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics27.cpp; sourceTree = ""; }; - D55759702A5FAC16009369FC /* UnityEngine.UI3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UI3.cpp; sourceTree = ""; }; - D55759712A5FAC16009369FC /* GenericMethods.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods.cpp; sourceTree = ""; }; - D55759722A5FAC16009369FC /* Generics23.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics23.cpp; sourceTree = ""; }; - D55759732A5FAC16009369FC /* UnityEngine.TilemapModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.TilemapModule_CodeGen.c; sourceTree = ""; }; - D55759742A5FAC16009369FC /* mscorlib6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib6.cpp; sourceTree = ""; }; - D55759752A5FAC16009369FC /* UnresolvedVirtualCallStubs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnresolvedVirtualCallStubs.cpp; sourceTree = ""; }; - D55759762A5FAC16009369FC /* UnityEngine.UIElementsModule5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule5.cpp; sourceTree = ""; }; - D55759772A5FAC16009369FC /* UnityEngine.UIElementsModule4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule4.cpp; sourceTree = ""; }; - D55759782A5FAC16009369FC /* UnityEngine.IMGUIModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.IMGUIModule.cpp; sourceTree = ""; }; - D55759792A5FAC16009369FC /* System.Core.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Core.cpp; sourceTree = ""; }; - D557597A2A5FAC16009369FC /* UnityEngine.InputLegacyModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.InputLegacyModule_CodeGen.c; sourceTree = ""; }; - D557597B2A5FAC16009369FC /* mscorlib7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib7.cpp; sourceTree = ""; }; - D557597C2A5FAC16009369FC /* Generics22.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics22.cpp; sourceTree = ""; }; - D557597D2A5FAC16009369FC /* Generics20.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics20.cpp; sourceTree = ""; }; - D557597E2A5FAC16009369FC /* mscorlib5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib5.cpp; sourceTree = ""; }; - D557597F2A5FAC16009369FC /* UnityEngine.AndroidJNIModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.AndroidJNIModule.cpp; sourceTree = ""; }; - D55759802A5FAC16009369FC /* Assembly-CSharp_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "Assembly-CSharp_CodeGen.c"; sourceTree = ""; }; - D55759812A5FAC16009369FC /* Generics8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics8.cpp; sourceTree = ""; }; - D55759822A5FAC16009369FC /* UnityEngine.AudioModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.AudioModule_CodeGen.c; sourceTree = ""; }; - D55759832A5FAC16009369FC /* UnityEngine.UIElementsModule6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule6.cpp; sourceTree = ""; }; - D55759842A5FAC16009369FC /* UnityEngine.UIElementsModule7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule7.cpp; sourceTree = ""; }; - D55759852A5FAC16009369FC /* Generics9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics9.cpp; sourceTree = ""; }; - D55759862A5FAC16009369FC /* Generics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics.cpp; sourceTree = ""; }; - D55759872A5FAC16009369FC /* UnityEngine.UnityWebRequestModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UnityWebRequestModule.cpp; sourceTree = ""; }; - D55759882A5FAC16009369FC /* mscorlib4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib4.cpp; sourceTree = ""; }; - D55759892A5FAC16009369FC /* Generics21.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics21.cpp; sourceTree = ""; }; + D53CC8812A7BA11200CAD911 /* UserNotifications.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UserNotifications.framework; path = System/Library/Frameworks/UserNotifications.framework; sourceTree = SDKROOT; }; + D53CC8842A7BA11D00CAD911 /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; }; + D53CC8892A7BA24A00CAD911 /* AppsFlyeriOSWrapper.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AppsFlyeriOSWrapper.mm; sourceTree = ""; }; + D53CC88A2A7BA24A00CAD911 /* AppsFlyer+AppController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AppsFlyer+AppController.m"; sourceTree = ""; }; + D53CC88B2A7BA24A00CAD911 /* AppsFlyerAttribution.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppsFlyerAttribution.h; sourceTree = ""; }; + D53CC88C2A7BA24A00CAD911 /* AppsFlyeriOSWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppsFlyeriOSWrapper.h; sourceTree = ""; }; + D53CC88D2A7BA24A00CAD911 /* AppsFlyerAppController.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AppsFlyerAppController.mm; sourceTree = ""; }; + D53CC88E2A7BA24A00CAD911 /* AFUnityUtils.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = AFUnityUtils.mm; sourceTree = ""; }; + D53CC88F2A7BA24A00CAD911 /* AppsFlyerAttribution.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppsFlyerAttribution.m; sourceTree = ""; }; + D53CC89B2A7BA28D00CAD911 /* UnityAppController+Notifications.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UnityAppController+Notifications.h"; sourceTree = ""; }; + D53CC89C2A7BA28D00CAD911 /* UnityNotificationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UnityNotificationManager.m; sourceTree = ""; }; + D53CC89D2A7BA28D00CAD911 /* UnityNotificationWrapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UnityNotificationWrapper.m; sourceTree = ""; }; + D53CC89E2A7BA28D00CAD911 /* UnityNotificationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UnityNotificationManager.h; sourceTree = ""; }; + D53CC89F2A7BA28D00CAD911 /* UnityNotificationWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UnityNotificationWrapper.h; sourceTree = ""; }; + D53CC8A02A7BA28D00CAD911 /* UnityAppController+Notifications.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = "UnityAppController+Notifications.mm"; sourceTree = ""; }; + D53CC8A62A7BA29800CAD911 /* libYouMeCommon.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libYouMeCommon.a; sourceTree = ""; }; + D53CC8A72A7BA29800CAD911 /* libdivesensor.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libdivesensor.a; sourceTree = ""; }; + D53CC8A82A7BA29800CAD911 /* libyoume_voice_engine.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libyoume_voice_engine.a; sourceTree = ""; }; + D53CC8A92A7BA29800CAD911 /* libffmpeg3.3.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libffmpeg3.3.a; sourceTree = ""; }; + D53CC8AA2A7BA29800CAD911 /* libtolua.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libtolua.a; sourceTree = ""; }; + D53CC8B02A7BA2EF00CAD911 /* ReplayKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ReplayKit.framework; path = System/Library/Frameworks/ReplayKit.framework; sourceTree = SDKROOT; }; + D53CC8B72A7BA67000CAD911 /* libresolv.9.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libresolv.9.tbd; path = usr/lib/libresolv.9.tbd; sourceTree = SDKROOT; }; + D53CCEC92A7BAE6600CAD911 /* Data */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Data; path = "../unity-build/Data"; sourceTree = ""; }; + D53CCECC2A7BAE8000CAD911 /* Generics38.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics38.cpp; sourceTree = ""; }; + D53CCECD2A7BAE8000CAD911 /* Il2CppGenericAdjustorThunkTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericAdjustorThunkTable.c; sourceTree = ""; }; + D53CCECE2A7BAE8000CAD911 /* Generics10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics10.cpp; sourceTree = ""; }; + D53CCECF2A7BAE8000CAD911 /* GenericMethods12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods12.cpp; sourceTree = ""; }; + D53CCED02A7BAE8000CAD911 /* mscorlib9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib9.cpp; sourceTree = ""; }; + D53CCED12A7BAE8000CAD911 /* GenericMethods7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods7.cpp; sourceTree = ""; }; + D53CCED22A7BAE8000CAD911 /* Assembly-CSharp28.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp28.cpp"; sourceTree = ""; }; + D53CCED32A7BAE8000CAD911 /* UnityEngine.UnityAnalyticsModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UnityAnalyticsModule.cpp; sourceTree = ""; }; + D53CCED42A7BAE8000CAD911 /* Il2CppGenericMethodTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericMethodTable.c; sourceTree = ""; }; + D53CCED52A7BAE8000CAD911 /* Assembly-CSharp14.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp14.cpp"; sourceTree = ""; }; + D53CCED62A7BAE8000CAD911 /* Assembly-CSharp8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp8.cpp"; sourceTree = ""; }; + D53CCED72A7BAE8000CAD911 /* UnityEngine.VRModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.VRModule_CodeGen.c; sourceTree = ""; }; + D53CCED82A7BAE8000CAD911 /* System6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System6.cpp; sourceTree = ""; }; + D53CCED92A7BAE8000CAD911 /* Generics4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics4.cpp; sourceTree = ""; }; + D53CCEDA2A7BAE8000CAD911 /* System.Xml5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml5.cpp; sourceTree = ""; }; + D53CCEDB2A7BAE8000CAD911 /* System.Xml4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml4.cpp; sourceTree = ""; }; + D53CCEDC2A7BAE8000CAD911 /* Generics5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics5.cpp; sourceTree = ""; }; + D53CCEDD2A7BAE8000CAD911 /* System7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System7.cpp; sourceTree = ""; }; + D53CCEDE2A7BAE8000CAD911 /* Assembly-CSharp9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp9.cpp"; sourceTree = ""; }; + D53CCEDF2A7BAE8000CAD911 /* Assembly-CSharp15.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp15.cpp"; sourceTree = ""; }; + D53CCEE02A7BAE8000CAD911 /* Assembly-CSharp29.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp29.cpp"; sourceTree = ""; }; + D53CCEE12A7BAE8000CAD911 /* System.Xml_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = System.Xml_CodeGen.c; sourceTree = ""; }; + D53CCEE22A7BAE8000CAD911 /* GenericMethods6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods6.cpp; sourceTree = ""; }; + D53CCEE32A7BAE8000CAD911 /* GenericMethods13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods13.cpp; sourceTree = ""; }; + D53CCEE42A7BAE8000CAD911 /* mscorlib8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib8.cpp; sourceTree = ""; }; + D53CCEE52A7BAE8000CAD911 /* Generics11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics11.cpp; sourceTree = ""; }; + D53CCEE62A7BAE8000CAD911 /* Generics39.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics39.cpp; sourceTree = ""; }; + D53CCEE72A7BAE8000CAD911 /* UnityEngine.Physics2DModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.Physics2DModule_CodeGen.c; sourceTree = ""; }; + D53CCEE82A7BAE8000CAD911 /* Il2CppCCTypeValuesTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCTypeValuesTable.cpp; sourceTree = ""; }; + D53CCEE92A7BAE8000CAD911 /* Generics13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics13.cpp; sourceTree = ""; }; + D53CCEEA2A7BAE8000CAD911 /* UnityEngine.VFXModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.VFXModule_CodeGen.c; sourceTree = ""; }; + D53CCEEB2A7BAE8000CAD911 /* GenericMethods11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods11.cpp; sourceTree = ""; }; + D53CCEEC2A7BAE8000CAD911 /* GenericMethods4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods4.cpp; sourceTree = ""; }; + D53CCEED2A7BAE8000CAD911 /* Il2CppInteropDataTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppInteropDataTable.cpp; sourceTree = ""; }; + D53CCEEE2A7BAE8000CAD911 /* Assembly-CSharp17.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp17.cpp"; sourceTree = ""; }; + D53CCEEF2A7BAE8000CAD911 /* Generics7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics7.cpp; sourceTree = ""; }; + D53CCEF02A7BAE8000CAD911 /* System5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System5.cpp; sourceTree = ""; }; + D53CCEF12A7BAE8000CAD911 /* System.Xml6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml6.cpp; sourceTree = ""; }; + D53CCEF22A7BAE8000CAD911 /* UnityEngine.UIElementsModule9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule9.cpp; sourceTree = ""; }; + D53CCEF32A7BAE8000CAD911 /* UnityEngine.UIElementsModule8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule8.cpp; sourceTree = ""; }; + D53CCEF42A7BAE8000CAD911 /* UnityICallRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityICallRegistration.cpp; sourceTree = ""; }; + D53CCEF52A7BAE8000CAD911 /* System.Xml7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml7.cpp; sourceTree = ""; }; + D53CCEF62A7BAE8000CAD911 /* System4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System4.cpp; sourceTree = ""; }; + D53CCEF72A7BAE8000CAD911 /* Generics6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics6.cpp; sourceTree = ""; }; + D53CCEF82A7BAE8000CAD911 /* Assembly-CSharp16.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp16.cpp"; sourceTree = ""; }; + D53CCEF92A7BAE8000CAD911 /* CString.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CString.cpp; sourceTree = ""; }; + D53CCEFA2A7BAE8000CAD911 /* GenericMethods5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods5.cpp; sourceTree = ""; }; + D53CCEFB2A7BAE8000CAD911 /* GenericMethods10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods10.cpp; sourceTree = ""; }; + D53CCEFC2A7BAE8000CAD911 /* UnityEngine_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine_CodeGen.c; sourceTree = ""; }; + D53CCEFD2A7BAE8000CAD911 /* Generics12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics12.cpp; sourceTree = ""; }; + D53CCEFE2A7BAE8000CAD911 /* Generics16.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics16.cpp; sourceTree = ""; }; + D53CCEFF2A7BAE8000CAD911 /* GenericMethods1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods1.cpp; sourceTree = ""; }; + D53CCF002A7BAE8000CAD911 /* GenericMethods14.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods14.cpp; sourceTree = ""; }; + D53CCF012A7BAE8000CAD911 /* Il2CppCCalculateFieldValues3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCalculateFieldValues3.cpp; sourceTree = ""; }; + D53CCF022A7BAE8000CAD911 /* UnityEngine.UIElementsNativeModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UIElementsNativeModule_CodeGen.c; sourceTree = ""; }; + D53CCF032A7BAE8000CAD911 /* Assembly-CSharp12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp12.cpp"; sourceTree = ""; }; + D53CCF042A7BAE8000CAD911 /* System.Runtime.CompilerServices.Unsafe_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = System.Runtime.CompilerServices.Unsafe_CodeGen.c; sourceTree = ""; }; + D53CCF052A7BAE8000CAD911 /* Generics2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics2.cpp; sourceTree = ""; }; + D53CCF062A7BAE8000CAD911 /* BestHTTP41.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP41.cpp; sourceTree = ""; }; + D53CCF072A7BAE8000CAD911 /* System.Xml3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml3.cpp; sourceTree = ""; }; + D53CCF082A7BAE8000CAD911 /* UnityEngine.TextCoreFontEngineModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.TextCoreFontEngineModule_CodeGen.c; sourceTree = ""; }; + D53CCF092A7BAE8000CAD911 /* UnityEngine.PhysicsModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.PhysicsModule_CodeGen.c; sourceTree = ""; }; + D53CCF0A2A7BAE8000CAD911 /* System.Xml2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml2.cpp; sourceTree = ""; }; + D53CCF0B2A7BAE8000CAD911 /* BestHTTP40.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP40.cpp; sourceTree = ""; }; + D53CCF0C2A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = AmazingAssets.TerrainToMesh_CodeGen.c; sourceTree = ""; }; + D53CCF0D2A7BAE8000CAD911 /* System1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System1.cpp; sourceTree = ""; }; + D53CCF0E2A7BAE8000CAD911 /* Generics3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics3.cpp; sourceTree = ""; }; + D53CCF0F2A7BAE8000CAD911 /* Assembly-CSharp13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp13.cpp"; sourceTree = ""; }; + D53CCF102A7BAE8000CAD911 /* Il2CppCCalculateFieldValues2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCalculateFieldValues2.cpp; sourceTree = ""; }; + D53CCF112A7BAE8000CAD911 /* UnityEngine.AndroidJNIModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.AndroidJNIModule_CodeGen.c; sourceTree = ""; }; + D53CCF122A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AmazingAssets.TerrainToMesh1.cpp; sourceTree = ""; }; + D53CCF132A7BAE8000CAD911 /* Assembly-CSharp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp.cpp"; sourceTree = ""; }; + D53CCF142A7BAE8000CAD911 /* Generics17.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics17.cpp; sourceTree = ""; }; + D53CCF152A7BAE8000CAD911 /* UnityEngine.UI_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UI_CodeGen.c; sourceTree = ""; }; + D53CCF162A7BAE8000CAD911 /* Generics15.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics15.cpp; sourceTree = ""; }; + D53CCF172A7BAE8000CAD911 /* UnityEngine.SpriteShapeModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.SpriteShapeModule.cpp; sourceTree = ""; }; + D53CCF182A7BAE8000CAD911 /* UnityEngine.TextRenderingModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextRenderingModule.cpp; sourceTree = ""; }; + D53CCF192A7BAE8000CAD911 /* Generics29.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics29.cpp; sourceTree = ""; }; + D53CCF1A2A7BAE8000CAD911 /* GenericMethods2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods2.cpp; sourceTree = ""; }; + D53CCF1B2A7BAE8000CAD911 /* Assembly-CSharp11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp11.cpp"; sourceTree = ""; }; + D53CCF1C2A7BAE8000CAD911 /* Assembly-CSharp39.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp39.cpp"; sourceTree = ""; }; + D53CCF1D2A7BAE8000CAD911 /* System3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System3.cpp; sourceTree = ""; }; + D53CCF1E2A7BAE8000CAD911 /* Generics1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics1.cpp; sourceTree = ""; }; + D53CCF1F2A7BAE8000CAD911 /* __Generated_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = __Generated_CodeGen.c; sourceTree = ""; }; + D53CCF202A7BAE8000CAD911 /* BestHTTP42.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP42.cpp; sourceTree = ""; }; + D53CCF212A7BAE8000CAD911 /* System.Configuration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Configuration.cpp; sourceTree = ""; }; + D53CCF222A7BAE8000CAD911 /* System.Xml1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml1.cpp; sourceTree = ""; }; + D53CCF232A7BAE8000CAD911 /* Il2CppCodeRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCodeRegistration.cpp; sourceTree = ""; }; + D53CCF242A7BAE8000CAD911 /* BestHTTP43.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP43.cpp; sourceTree = ""; }; + D53CCF252A7BAE8000CAD911 /* System2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System2.cpp; sourceTree = ""; }; + D53CCF262A7BAE8000CAD911 /* Assembly-CSharp38.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp38.cpp"; sourceTree = ""; }; + D53CCF272A7BAE8000CAD911 /* Google.Protobuf.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Google.Protobuf.cpp; sourceTree = ""; }; + D53CCF282A7BAE8000CAD911 /* Assembly-CSharp10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp10.cpp"; sourceTree = ""; }; + D53CCF292A7BAE8000CAD911 /* Il2CppCCalculateFieldValues1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCalculateFieldValues1.cpp; sourceTree = ""; }; + D53CCF2A2A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AmazingAssets.TerrainToMesh2.cpp; sourceTree = ""; }; + D53CCF2B2A7BAE8000CAD911 /* __Generated.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = __Generated.cpp; sourceTree = ""; }; + D53CCF2C2A7BAE8000CAD911 /* GenericMethods3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods3.cpp; sourceTree = ""; }; + D53CCF2D2A7BAE8000CAD911 /* Generics28.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics28.cpp; sourceTree = ""; }; + D53CCF2E2A7BAE8000CAD911 /* Generics14.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics14.cpp; sourceTree = ""; }; + D53CCF2F2A7BAE8000CAD911 /* UnityEngine.UnityWebRequestAudioModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UnityWebRequestAudioModule_CodeGen.c; sourceTree = ""; }; + D53CCF302A7BAE8000CAD911 /* UnityEngine.UnityWebRequestWWWModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UnityWebRequestWWWModule.cpp; sourceTree = ""; }; + D53CCF312A7BAE8000CAD911 /* BestHTTP.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP.cpp; sourceTree = ""; }; + D53CCF322A7BAE8000CAD911 /* mscorlib15.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib15.cpp; sourceTree = ""; }; + D53CCF332A7BAE8000CAD911 /* UnityEngine.UIElementsModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UIElementsModule_CodeGen.c; sourceTree = ""; }; + D53CCF342A7BAE8000CAD911 /* BestHTTP18.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP18.cpp; sourceTree = ""; }; + D53CCF352A7BAE8000CAD911 /* BestHTTP30.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP30.cpp; sourceTree = ""; }; + D53CCF362A7BAE8000CAD911 /* UnityEngine.DirectorModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.DirectorModule_CodeGen.c; sourceTree = ""; }; + D53CCF372A7BAE8000CAD911 /* Il2CppCCalculateTypeValues.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCalculateTypeValues.cpp; sourceTree = ""; }; + D53CCF382A7BAE8000CAD911 /* BestHTTP24.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP24.cpp; sourceTree = ""; }; + D53CCF392A7BAE8000CAD911 /* System13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System13.cpp; sourceTree = ""; }; + D53CCF3A2A7BAE8000CAD911 /* System12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System12.cpp; sourceTree = ""; }; + D53CCF3B2A7BAE8000CAD911 /* Il2CppCCalculateFieldValues.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCalculateFieldValues.cpp; sourceTree = ""; }; + D53CCF3C2A7BAE8000CAD911 /* UnityEngine.AudioModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.AudioModule.cpp; sourceTree = ""; }; + D53CCF3D2A7BAE8000CAD911 /* UnityEngine.XRModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.XRModule.cpp; sourceTree = ""; }; + D53CCF3E2A7BAE8000CAD911 /* BestHTTP1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP1.cpp; sourceTree = ""; }; + D53CCF3F2A7BAE8000CAD911 /* Il2CppGenericMethodPointerTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericMethodPointerTable.c; sourceTree = ""; }; + D53CCF402A7BAE8000CAD911 /* BestHTTP25.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP25.cpp; sourceTree = ""; }; + D53CCF412A7BAE8000CAD911 /* BestHTTP31.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP31.cpp; sourceTree = ""; }; + D53CCF422A7BAE8000CAD911 /* UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c; sourceTree = ""; }; + D53CCF432A7BAE8000CAD911 /* BestHTTP19.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP19.cpp; sourceTree = ""; }; + D53CCF442A7BAE8000CAD911 /* mscorlib14.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib14.cpp; sourceTree = ""; }; + D53CCF452A7BAE8000CAD911 /* UnityEngine.CoreModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.CoreModule_CodeGen.c; sourceTree = ""; }; + D53CCF462A7BAE8000CAD911 /* UnityEngine.AnimationModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.AnimationModule_CodeGen.c; sourceTree = ""; }; + D53CCF472A7BAE8000CAD911 /* UnityEngine.AnimationModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.AnimationModule.cpp; sourceTree = ""; }; + D53CCF482A7BAE8000CAD911 /* UnityEngine.VideoModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.VideoModule_CodeGen.c; sourceTree = ""; }; + D53CCF492A7BAE8000CAD911 /* UnityEngine.TextRenderingModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.TextRenderingModule_CodeGen.c; sourceTree = ""; }; + D53CCF4A2A7BAE8000CAD911 /* Generics58.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics58.cpp; sourceTree = ""; }; + D53CCF4B2A7BAE8000CAD911 /* spine-unity_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "spine-unity_CodeGen.c"; sourceTree = ""; }; + D53CCF4C2A7BAE8000CAD911 /* UnityEngine.UnityWebRequestWWWModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UnityWebRequestWWWModule_CodeGen.c; sourceTree = ""; }; + D53CCF4D2A7BAE8000CAD911 /* mscorlib16.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib16.cpp; sourceTree = ""; }; + D53CCF4E2A7BAE8000CAD911 /* BestHTTP27.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP27.cpp; sourceTree = ""; }; + D53CCF4F2A7BAE8000CAD911 /* BestHTTP33.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP33.cpp; sourceTree = ""; }; + D53CCF502A7BAE8000CAD911 /* ICSharpCode.SharpZipLib4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ICSharpCode.SharpZipLib4.cpp; sourceTree = ""; }; + D53CCF512A7BAE8000CAD911 /* BestHTTP3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP3.cpp; sourceTree = ""; }; + D53CCF522A7BAE8000CAD911 /* BestHTTP_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = BestHTTP_CodeGen.c; sourceTree = ""; }; + D53CCF532A7BAE8000CAD911 /* System10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System10.cpp; sourceTree = ""; }; + D53CCF542A7BAE8000CAD911 /* System11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System11.cpp; sourceTree = ""; }; + D53CCF552A7BAE8000CAD911 /* BestHTTP2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP2.cpp; sourceTree = ""; }; + D53CCF562A7BAE8000CAD911 /* BestHTTP32.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP32.cpp; sourceTree = ""; }; + D53CCF572A7BAE8000CAD911 /* UnityEngine.AssetBundleModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.AssetBundleModule.cpp; sourceTree = ""; }; + D53CCF582A7BAE8000CAD911 /* BestHTTP26.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP26.cpp; sourceTree = ""; }; + D53CCF592A7BAE8000CAD911 /* CString_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = CString_CodeGen.c; sourceTree = ""; }; + D53CCF5A2A7BAE8000CAD911 /* mscorlib17.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib17.cpp; sourceTree = ""; }; + D53CCF5B2A7BAE8000CAD911 /* Generics59.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics59.cpp; sourceTree = ""; }; + D53CCF5C2A7BAE8000CAD911 /* Assembly-CSharp-firstpass_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "Assembly-CSharp-firstpass_CodeGen.c"; sourceTree = ""; }; + D53CCF5D2A7BAE8000CAD911 /* Generics49.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics49.cpp; sourceTree = ""; }; + D53CCF5E2A7BAE8000CAD911 /* UnityEngine.GameCenterModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.GameCenterModule.cpp; sourceTree = ""; }; + D53CCF5F2A7BAE8000CAD911 /* UnityEngine.XRModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.XRModule_CodeGen.c; sourceTree = ""; }; + D53CCF602A7BAE8000CAD911 /* mscorlib13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib13.cpp; sourceTree = ""; }; + D53CCF612A7BAE8000CAD911 /* BestHTTP22.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP22.cpp; sourceTree = ""; }; + D53CCF622A7BAE8000CAD911 /* BestHTTP36.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP36.cpp; sourceTree = ""; }; + D53CCF632A7BAE8000CAD911 /* ICSharpCode.SharpZipLib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ICSharpCode.SharpZipLib.cpp; sourceTree = ""; }; + D53CCF642A7BAE8000CAD911 /* Mono.Security1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Mono.Security1.cpp; sourceTree = ""; }; + D53CCF652A7BAE8000CAD911 /* ICSharpCode.SharpZipLib1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ICSharpCode.SharpZipLib1.cpp; sourceTree = ""; }; + D53CCF662A7BAE8000CAD911 /* BestHTTP6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP6.cpp; sourceTree = ""; }; + D53CCF672A7BAE8000CAD911 /* BestHTTP7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP7.cpp; sourceTree = ""; }; + D53CCF682A7BAE8000CAD911 /* UnityEngine.InputModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.InputModule_CodeGen.c; sourceTree = ""; }; + D53CCF692A7BAE8000CAD911 /* BestHTTP37.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP37.cpp; sourceTree = ""; }; + D53CCF6A2A7BAE8000CAD911 /* BestHTTP23.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP23.cpp; sourceTree = ""; }; + D53CCF6B2A7BAE8000CAD911 /* mscorlib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib.cpp; sourceTree = ""; }; + D53CCF6C2A7BAE8000CAD911 /* mscorlib12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib12.cpp; sourceTree = ""; }; + D53CCF6D2A7BAE8000CAD911 /* UnityEngine.UnityWebRequestModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UnityWebRequestModule_CodeGen.c; sourceTree = ""; }; + D53CCF6E2A7BAE8000CAD911 /* Generics48.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics48.cpp; sourceTree = ""; }; + D53CCF6F2A7BAE8000CAD911 /* Generics60.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics60.cpp; sourceTree = ""; }; + D53CCF702A7BAE8000CAD911 /* UnityEngine.DirectorModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.DirectorModule.cpp; sourceTree = ""; }; + D53CCF712A7BAE8000CAD911 /* mscorlib10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib10.cpp; sourceTree = ""; }; + D53CCF722A7BAE8000CAD911 /* System.Xml11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml11.cpp; sourceTree = ""; }; + D53CCF732A7BAE8000CAD911 /* BestHTTP35.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP35.cpp; sourceTree = ""; }; + D53CCF742A7BAE8000CAD911 /* BestHTTP21.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP21.cpp; sourceTree = ""; }; + D53CCF752A7BAE8000CAD911 /* Il2CppRgctxTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppRgctxTable.c; sourceTree = ""; }; + D53CCF762A7BAE8000CAD911 /* UnityClassRegistration.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityClassRegistration.cpp; sourceTree = ""; }; + D53CCF772A7BAE8000CAD911 /* BestHTTP5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP5.cpp; sourceTree = ""; }; + D53CCF782A7BAE8000CAD911 /* ICSharpCode.SharpZipLib2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ICSharpCode.SharpZipLib2.cpp; sourceTree = ""; }; + D53CCF792A7BAE8000CAD911 /* ICSharpCode.SharpZipLib3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ICSharpCode.SharpZipLib3.cpp; sourceTree = ""; }; + D53CCF7A2A7BAE8000CAD911 /* UnityEngine.InputModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.InputModule.cpp; sourceTree = ""; }; + D53CCF7B2A7BAE8000CAD911 /* BestHTTP4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP4.cpp; sourceTree = ""; }; + D53CCF7C2A7BAE8000CAD911 /* Unity.Notifications.iOS_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Unity.Notifications.iOS_CodeGen.c; sourceTree = ""; }; + D53CCF7D2A7BAE8000CAD911 /* BestHTTP20.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP20.cpp; sourceTree = ""; }; + D53CCF7E2A7BAE8000CAD911 /* UnityEngine.VFXModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.VFXModule.cpp; sourceTree = ""; }; + D53CCF7F2A7BAE8000CAD911 /* System.Xml10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml10.cpp; sourceTree = ""; }; + D53CCF802A7BAE8000CAD911 /* BestHTTP34.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP34.cpp; sourceTree = ""; }; + D53CCF812A7BAE8000CAD911 /* UnityEngine.InputLegacyModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.InputLegacyModule.cpp; sourceTree = ""; }; + D53CCF822A7BAE8000CAD911 /* mscorlib11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib11.cpp; sourceTree = ""; }; + D53CCF832A7BAE8000CAD911 /* CString1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CString1.cpp; sourceTree = ""; }; + D53CCF842A7BAE8000CAD911 /* UnityEngine.SpriteShapeModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.SpriteShapeModule_CodeGen.c; sourceTree = ""; }; + D53CCF852A7BAE8000CAD911 /* UnityEngine.UIElementsModule11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule11.cpp; sourceTree = ""; }; + D53CCF862A7BAE8000CAD911 /* UnityEngine.IMGUIModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.IMGUIModule_CodeGen.c; sourceTree = ""; }; + D53CCF872A7BAE8000CAD911 /* UnityEngine.ImageConversionModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.ImageConversionModule_CodeGen.c; sourceTree = ""; }; + D53CCF882A7BAE8000CAD911 /* Generics46.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics46.cpp; sourceTree = ""; }; + D53CCF892A7BAE8000CAD911 /* Generics52.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics52.cpp; sourceTree = ""; }; + D53CCF8A2A7BAE8000CAD911 /* Il2CppTypeDefinitions.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppTypeDefinitions.c; sourceTree = ""; }; + D53CCF8B2A7BAE8000CAD911 /* mscorlib20.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib20.cpp; sourceTree = ""; }; + D53CCF8C2A7BAE8000CAD911 /* UnityEngine.UI.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UI.cpp; sourceTree = ""; }; + D53CCF8D2A7BAE8000CAD911 /* System_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = System_CodeGen.c; sourceTree = ""; }; + D53CCF8E2A7BAE8000CAD911 /* BestHTTP39.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP39.cpp; sourceTree = ""; }; + D53CCF8F2A7BAE8000CAD911 /* BestHTTP11.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP11.cpp; sourceTree = ""; }; + D53CCF902A7BAE8000CAD911 /* UnityEngine.IMGUIModule1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.IMGUIModule1.cpp; sourceTree = ""; }; + D53CCF912A7BAE8000CAD911 /* BestHTTP9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP9.cpp; sourceTree = ""; }; + D53CCF922A7BAE8000CAD911 /* BestHTTP8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP8.cpp; sourceTree = ""; }; + D53CCF932A7BAE8000CAD911 /* UnityEngine.UIModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIModule.cpp; sourceTree = ""; }; + D53CCF942A7BAE8000CAD911 /* BestHTTP10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP10.cpp; sourceTree = ""; }; + D53CCF952A7BAE8000CAD911 /* BestHTTP38.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP38.cpp; sourceTree = ""; }; + D53CCF962A7BAE8000CAD911 /* ICSharpCode.SharpZipLib_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = ICSharpCode.SharpZipLib_CodeGen.c; sourceTree = ""; }; + D53CCF972A7BAE8000CAD911 /* mscorlib21.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib21.cpp; sourceTree = ""; }; + D53CCF982A7BAE8000CAD911 /* Generics53.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics53.cpp; sourceTree = ""; }; + D53CCF992A7BAE8000CAD911 /* Generics47.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics47.cpp; sourceTree = ""; }; + D53CCF9A2A7BAE8000CAD911 /* UnityEngine.UIElementsModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule.cpp; sourceTree = ""; }; + D53CCF9B2A7BAE8000CAD911 /* UnityEngine.UIElementsModule10.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule10.cpp; sourceTree = ""; }; + D53CCF9C2A7BAE8000CAD911 /* spine-unity.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spine-unity.cpp"; sourceTree = ""; }; + D53CCF9D2A7BAE8000CAD911 /* UnityEngine.UIElementsModule12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule12.cpp; sourceTree = ""; }; + D53CCF9E2A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = AmazingAssets.TerrainToMesh.cpp; sourceTree = ""; }; + D53CCF9F2A7BAE8000CAD911 /* UnityEngine.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.cpp; sourceTree = ""; }; + D53CCFA02A7BAE8000CAD911 /* Generics51.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics51.cpp; sourceTree = ""; }; + D53CCFA12A7BAE8000CAD911 /* Generics45.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics45.cpp; sourceTree = ""; }; + D53CCFA22A7BAE8000CAD911 /* spine-unity4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spine-unity4.cpp"; sourceTree = ""; }; + D53CCFA32A7BAE8000CAD911 /* UnityEngine.SharedInternalsModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.SharedInternalsModule_CodeGen.c; sourceTree = ""; }; + D53CCFA42A7BAE8000CAD911 /* UnityEngine.UnityWebRequestAssetBundleModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UnityWebRequestAssetBundleModule.cpp; sourceTree = ""; }; + D53CCFA52A7BAE8000CAD911 /* mscorlib_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mscorlib_CodeGen.c; sourceTree = ""; }; + D53CCFA62A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextCoreTextEngineModule.cpp; sourceTree = ""; }; + D53CCFA72A7BAE8000CAD911 /* mscorlib23.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib23.cpp; sourceTree = ""; }; + D53CCFA82A7BAE8000CAD911 /* Il2CppMetadataRegistration.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppMetadataRegistration.c; sourceTree = ""; }; + D53CCFA92A7BAE8000CAD911 /* BestHTTP12.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP12.cpp; sourceTree = ""; }; + D53CCFAA2A7BAE8000CAD911 /* UnityEngine.Physics2DModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.Physics2DModule.cpp; sourceTree = ""; }; + D53CCFAB2A7BAE8000CAD911 /* BestHTTP13.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP13.cpp; sourceTree = ""; }; + D53CCFAC2A7BAE8000CAD911 /* Assembly-CSharp40.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp40.cpp"; sourceTree = ""; }; + D53CCFAD2A7BAE8000CAD911 /* mscorlib22.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib22.cpp; sourceTree = ""; }; + D53CCFAE2A7BAE8000CAD911 /* spine-unity5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spine-unity5.cpp"; sourceTree = ""; }; + D53CCFAF2A7BAE8000CAD911 /* Il2CppGenericMethodDefinitions.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericMethodDefinitions.c; sourceTree = ""; }; + D53CCFB02A7BAE8000CAD911 /* Generics44.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics44.cpp; sourceTree = ""; }; + D53CCFB12A7BAE8000CAD911 /* Generics50.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics50.cpp; sourceTree = ""; }; + D53CCFB22A7BAE8000CAD911 /* Unity.Timeline1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Unity.Timeline1.cpp; sourceTree = ""; }; + D53CCFB32A7BAE8000CAD911 /* Generics54.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics54.cpp; sourceTree = ""; }; + D53CCFB42A7BAE8000CAD911 /* Generics40.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics40.cpp; sourceTree = ""; }; + D53CCFB52A7BAE8000CAD911 /* UnityEngine.AIModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.AIModule_CodeGen.c; sourceTree = ""; }; + D53CCFB62A7BAE8000CAD911 /* spine-unity1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spine-unity1.cpp"; sourceTree = ""; }; + D53CCFB72A7BAE8000CAD911 /* UnityEngine.SharedInternalsModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.SharedInternalsModule.cpp; sourceTree = ""; }; + D53CCFB82A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextCoreTextEngineModule2.cpp; sourceTree = ""; }; + D53CCFB92A7BAE8000CAD911 /* BestHTTP17.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP17.cpp; sourceTree = ""; }; + D53CCFBA2A7BAE8000CAD911 /* UnityEngine.UIModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UIModule_CodeGen.c; sourceTree = ""; }; + D53CCFBB2A7BAE8000CAD911 /* System.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.cpp; sourceTree = ""; }; + D53CCFBC2A7BAE8000CAD911 /* BestHTTP16.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP16.cpp; sourceTree = ""; }; + D53CCFBD2A7BAE8000CAD911 /* Mono.Security.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Mono.Security.cpp; sourceTree = ""; }; + D53CCFBE2A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextCoreTextEngineModule3.cpp; sourceTree = ""; }; + D53CCFBF2A7BAE8000CAD911 /* System.Configuration_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = System.Configuration_CodeGen.c; sourceTree = ""; }; + D53CCFC02A7BAE8000CAD911 /* Generics41.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics41.cpp; sourceTree = ""; }; + D53CCFC12A7BAE8000CAD911 /* Generics55.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics55.cpp; sourceTree = ""; }; + D53CCFC22A7BAE8000CAD911 /* Generics43.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics43.cpp; sourceTree = ""; }; + D53CCFC32A7BAE8000CAD911 /* Assembly-CSharp-firstpass.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp-firstpass.cpp"; sourceTree = ""; }; + D53CCFC42A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.TextCoreTextEngineModule_CodeGen.c; sourceTree = ""; }; + D53CCFC52A7BAE8000CAD911 /* Generics57.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics57.cpp; sourceTree = ""; }; + D53CCFC62A7BAE8000CAD911 /* UnityEngine.VRModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.VRModule.cpp; sourceTree = ""; }; + D53CCFC72A7BAE8000CAD911 /* spine-unity2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spine-unity2.cpp"; sourceTree = ""; }; + D53CCFC82A7BAE8000CAD911 /* mscorlib19.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib19.cpp; sourceTree = ""; }; + D53CCFC92A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextCoreTextEngineModule1.cpp; sourceTree = ""; }; + D53CCFCA2A7BAE8000CAD911 /* UnityEngine.SubsystemsModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.SubsystemsModule_CodeGen.c; sourceTree = ""; }; + D53CCFCB2A7BAE8000CAD911 /* UnityEngine.GridModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.GridModule.cpp; sourceTree = ""; }; + D53CCFCC2A7BAE8000CAD911 /* Il2CppMetadataUsage.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppMetadataUsage.c; sourceTree = ""; }; + D53CCFCD2A7BAE8000CAD911 /* BestHTTP14.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP14.cpp; sourceTree = ""; }; + D53CCFCE2A7BAE8000CAD911 /* BestHTTP28.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP28.cpp; sourceTree = ""; }; + D53CCFCF2A7BAE8000CAD911 /* UnityEngine.TerrainModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TerrainModule.cpp; sourceTree = ""; }; + D53CCFD02A7BAE8000CAD911 /* Debugger.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Debugger.cpp; sourceTree = ""; }; + D53CCFD12A7BAE8000CAD911 /* System.Runtime.CompilerServices.Unsafe.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Runtime.CompilerServices.Unsafe.cpp; sourceTree = ""; }; + D53CCFD22A7BAE8000CAD911 /* BestHTTP29.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP29.cpp; sourceTree = ""; }; + D53CCFD32A7BAE8000CAD911 /* Il2CppReversePInvokeWrapperTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppReversePInvokeWrapperTable.cpp; sourceTree = ""; }; + D53CCFD42A7BAE8000CAD911 /* BestHTTP15.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = BestHTTP15.cpp; sourceTree = ""; }; + D53CCFD52A7BAE8000CAD911 /* mscorlib24.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib24.cpp; sourceTree = ""; }; + D53CCFD62A7BAE8000CAD911 /* mscorlib18.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib18.cpp; sourceTree = ""; }; + D53CCFD72A7BAE8000CAD911 /* Whinarn.UnityMeshSimplifier.Runtime.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Whinarn.UnityMeshSimplifier.Runtime.cpp; sourceTree = ""; }; + D53CCFD82A7BAE8000CAD911 /* spine-unity3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "spine-unity3.cpp"; sourceTree = ""; }; + D53CCFD92A7BAE8000CAD911 /* UnityEngine.UIElementsNativeModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsNativeModule.cpp; sourceTree = ""; }; + D53CCFDA2A7BAE8000CAD911 /* Generics56.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics56.cpp; sourceTree = ""; }; + D53CCFDB2A7BAE8000CAD911 /* Generics42.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics42.cpp; sourceTree = ""; }; + D53CCFDC2A7BAE8000CAD911 /* Generics19.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics19.cpp; sourceTree = ""; }; + D53CCFDD2A7BAE8000CAD911 /* Il2CppInvokerTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppInvokerTable.cpp; sourceTree = ""; }; + D53CCFDE2A7BAE8000CAD911 /* UnityEngine.UI1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UI1.cpp; sourceTree = ""; }; + D53CCFDF2A7BAE8000CAD911 /* Generics25.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics25.cpp; sourceTree = ""; }; + D53CCFE02A7BAE8000CAD911 /* Generics31.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics31.cpp; sourceTree = ""; }; + D53CCFE12A7BAE8000CAD911 /* Mono.Security_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Mono.Security_CodeGen.c; sourceTree = ""; }; + D53CCFE22A7BAE8000CAD911 /* UnityEngine.TerrainModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.TerrainModule_CodeGen.c; sourceTree = ""; }; + D53CCFE32A7BAE8000CAD911 /* Assembly-CSharp1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp1.cpp"; sourceTree = ""; }; + D53CCFE42A7BAE8000CAD911 /* Assembly-CSharp35.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp35.cpp"; sourceTree = ""; }; + D53CCFE52A7BAE8000CAD911 /* Assembly-CSharp21.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp21.cpp"; sourceTree = ""; }; + D53CCFE62A7BAE8000CAD911 /* UnityEngine.AssetBundleModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.AssetBundleModule_CodeGen.c; sourceTree = ""; }; + D53CCFE72A7BAE8000CAD911 /* UnityEngine.UIElementsModule3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule3.cpp; sourceTree = ""; }; + D53CCFE82A7BAE8000CAD911 /* Google.Protobuf3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Google.Protobuf3.cpp; sourceTree = ""; }; + D53CCFE92A7BAE8000CAD911 /* Google.Protobuf2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Google.Protobuf2.cpp; sourceTree = ""; }; + D53CCFEA2A7BAE8000CAD911 /* UnityEngine.SubsystemsModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.SubsystemsModule.cpp; sourceTree = ""; }; + D53CCFEB2A7BAE8000CAD911 /* UnityEngine.UIElementsModule2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule2.cpp; sourceTree = ""; }; + D53CCFEC2A7BAE8000CAD911 /* UnityEngine.CoreModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.CoreModule.cpp; sourceTree = ""; }; + D53CCFED2A7BAE8000CAD911 /* Il2CppGenericClassTable.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericClassTable.c; sourceTree = ""; }; + D53CCFEE2A7BAE8000CAD911 /* UnityEngine.GridModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.GridModule_CodeGen.c; sourceTree = ""; }; + D53CCFEF2A7BAE8000CAD911 /* System.Xml.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml.cpp; sourceTree = ""; }; + D53CCFF02A7BAE8000CAD911 /* UnityEngine.CoreModule1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.CoreModule1.cpp; sourceTree = ""; }; + D53CCFF12A7BAE8000CAD911 /* Assembly-CSharp20.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp20.cpp"; sourceTree = ""; }; + D53CCFF22A7BAE8000CAD911 /* Assembly-CSharp34.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp34.cpp"; sourceTree = ""; }; + D53CCFF32A7BAE8000CAD911 /* System.Numerics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Numerics.cpp; sourceTree = ""; }; + D53CCFF42A7BAE8000CAD911 /* Il2CppGenericInstDefinitions.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Il2CppGenericInstDefinitions.c; sourceTree = ""; }; + D53CCFF52A7BAE8000CAD911 /* mscorlib1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib1.cpp; sourceTree = ""; }; + D53CCFF62A7BAE8000CAD911 /* Generics30.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics30.cpp; sourceTree = ""; }; + D53CCFF72A7BAE8000CAD911 /* Generics24.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics24.cpp; sourceTree = ""; }; + D53CCFF82A7BAE8000CAD911 /* Generics18.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics18.cpp; sourceTree = ""; }; + D53CCFF92A7BAE8000CAD911 /* Google.Protobuf_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Google.Protobuf_CodeGen.c; sourceTree = ""; }; + D53CCFFA2A7BAE8000CAD911 /* UnityEngine.PhysicsModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.PhysicsModule.cpp; sourceTree = ""; }; + D53CCFFB2A7BAE8000CAD911 /* Il2CppCCalculateTypeValues1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCalculateTypeValues1.cpp; sourceTree = ""; }; + D53CCFFC2A7BAE8000CAD911 /* UnityEngine.TextCoreFontEngineModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TextCoreFontEngineModule.cpp; sourceTree = ""; }; + D53CCFFD2A7BAE8000CAD911 /* UnityEngine.UI2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UI2.cpp; sourceTree = ""; }; + D53CCFFE2A7BAE8000CAD911 /* Generics32.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics32.cpp; sourceTree = ""; }; + D53CCFFF2A7BAE8000CAD911 /* Generics26.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics26.cpp; sourceTree = ""; }; + D53CD0002A7BAE8000CAD911 /* mscorlib3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib3.cpp; sourceTree = ""; }; + D53CD0012A7BAE8000CAD911 /* UnityEngine.GameCenterModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.GameCenterModule_CodeGen.c; sourceTree = ""; }; + D53CD0022A7BAE8000CAD911 /* Assembly-CSharp2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp2.cpp"; sourceTree = ""; }; + D53CD0032A7BAE8000CAD911 /* Assembly-CSharp22.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp22.cpp"; sourceTree = ""; }; + D53CD0042A7BAE8000CAD911 /* Assembly-CSharp36.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp36.cpp"; sourceTree = ""; }; + D53CD0052A7BAE8000CAD911 /* UnityEngine.CoreModule3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.CoreModule3.cpp; sourceTree = ""; }; + D53CD0062A7BAE8000CAD911 /* UnityEngine.TilemapModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.TilemapModule.cpp; sourceTree = ""; }; + D53CD0072A7BAE8000CAD911 /* UnityEngine.ParticleSystemModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.ParticleSystemModule.cpp; sourceTree = ""; }; + D53CD0082A7BAE8000CAD911 /* Google.Protobuf1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Google.Protobuf1.cpp; sourceTree = ""; }; + D53CD0092A7BAE8000CAD911 /* UnityEngine.UIElementsModule1.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule1.cpp; sourceTree = ""; }; + D53CD00A2A7BAE8000CAD911 /* UnityEngine.UnityAnalyticsModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.UnityAnalyticsModule_CodeGen.c; sourceTree = ""; }; + D53CD00B2A7BAE8000CAD911 /* Il2CppCCFieldValuesTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Il2CppCCFieldValuesTable.cpp; sourceTree = ""; }; + D53CD00C2A7BAE8000CAD911 /* UnityEngine.ImageConversionModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.ImageConversionModule.cpp; sourceTree = ""; }; + D53CD00D2A7BAE8000CAD911 /* UnityEngine.CoreModule2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.CoreModule2.cpp; sourceTree = ""; }; + D53CD00E2A7BAE8000CAD911 /* Assembly-CSharp37.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp37.cpp"; sourceTree = ""; }; + D53CD00F2A7BAE8000CAD911 /* Assembly-CSharp23.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp23.cpp"; sourceTree = ""; }; + D53CD0102A7BAE8000CAD911 /* Assembly-CSharp3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp3.cpp"; sourceTree = ""; }; + D53CD0112A7BAE8000CAD911 /* mscorlib2.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib2.cpp; sourceTree = ""; }; + D53CD0122A7BAE8000CAD911 /* System.Core_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = System.Core_CodeGen.c; sourceTree = ""; }; + D53CD0132A7BAE8000CAD911 /* Generics27.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics27.cpp; sourceTree = ""; }; + D53CD0142A7BAE8000CAD911 /* Generics33.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics33.cpp; sourceTree = ""; }; + D53CD0152A7BAE8000CAD911 /* UnityEngine.UI3.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UI3.cpp; sourceTree = ""; }; + D53CD0162A7BAE8000CAD911 /* Unity.Timeline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Unity.Timeline.cpp; sourceTree = ""; }; + D53CD0172A7BAE8000CAD911 /* GenericMethods.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods.cpp; sourceTree = ""; }; + D53CD0182A7BAE8000CAD911 /* Generics37.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics37.cpp; sourceTree = ""; }; + D53CD0192A7BAE8000CAD911 /* Generics23.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics23.cpp; sourceTree = ""; }; + D53CD01A2A7BAE8000CAD911 /* UnityEngine.TilemapModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.TilemapModule_CodeGen.c; sourceTree = ""; }; + D53CD01B2A7BAE8000CAD911 /* Debugger_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Debugger_CodeGen.c; sourceTree = ""; }; + D53CD01C2A7BAE8000CAD911 /* mscorlib6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib6.cpp; sourceTree = ""; }; + D53CD01D2A7BAE8000CAD911 /* GenericMethods8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods8.cpp; sourceTree = ""; }; + D53CD01E2A7BAE8000CAD911 /* UnresolvedVirtualCallStubs.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnresolvedVirtualCallStubs.cpp; sourceTree = ""; }; + D53CD01F2A7BAE8000CAD911 /* Assembly-CSharp27.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp27.cpp"; sourceTree = ""; }; + D53CD0202A7BAE8000CAD911 /* UnityEngine.VideoModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.VideoModule.cpp; sourceTree = ""; }; + D53CD0212A7BAE8000CAD911 /* Assembly-CSharp33.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp33.cpp"; sourceTree = ""; }; + D53CD0222A7BAE8000CAD911 /* Assembly-CSharp7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp7.cpp"; sourceTree = ""; }; + D53CD0232A7BAE8000CAD911 /* System9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System9.cpp; sourceTree = ""; }; + D53CD0242A7BAE8000CAD911 /* UnityEngine.UIElementsModule5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule5.cpp; sourceTree = ""; }; + D53CD0252A7BAE8100CAD911 /* UnityEngine.UIElementsModule4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule4.cpp; sourceTree = ""; }; + D53CD0262A7BAE8100CAD911 /* Google.Protobuf4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Google.Protobuf4.cpp; sourceTree = ""; }; + D53CD0272A7BAE8100CAD911 /* UnityEngine.IMGUIModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.IMGUIModule.cpp; sourceTree = ""; }; + D53CD0282A7BAE8100CAD911 /* System.Core.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Core.cpp; sourceTree = ""; }; + D53CD0292A7BAE8100CAD911 /* System8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System8.cpp; sourceTree = ""; }; + D53CD02A2A7BAE8100CAD911 /* Assembly-CSharp6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp6.cpp"; sourceTree = ""; }; + D53CD02B2A7BAE8100CAD911 /* Assembly-CSharp32.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp32.cpp"; sourceTree = ""; }; + D53CD02C2A7BAE8100CAD911 /* Assembly-CSharp26.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp26.cpp"; sourceTree = ""; }; + D53CD02D2A7BAE8100CAD911 /* UnityEngine.InputLegacyModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.InputLegacyModule_CodeGen.c; sourceTree = ""; }; + D53CD02E2A7BAE8100CAD911 /* GenericMethods9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = GenericMethods9.cpp; sourceTree = ""; }; + D53CD02F2A7BAE8100CAD911 /* mscorlib7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib7.cpp; sourceTree = ""; }; + D53CD0302A7BAE8100CAD911 /* Generics22.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics22.cpp; sourceTree = ""; }; + D53CD0312A7BAE8100CAD911 /* Generics36.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics36.cpp; sourceTree = ""; }; + D53CD0322A7BAE8100CAD911 /* UnityEngine.AIModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.AIModule.cpp; sourceTree = ""; }; + D53CD0332A7BAE8100CAD911 /* Unity.Timeline_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Unity.Timeline_CodeGen.c; sourceTree = ""; }; + D53CD0342A7BAE8100CAD911 /* UnityEngine.ParticleSystemModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.ParticleSystemModule_CodeGen.c; sourceTree = ""; }; + D53CD0352A7BAE8100CAD911 /* Generics20.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics20.cpp; sourceTree = ""; }; + D53CD0362A7BAE8100CAD911 /* Generics34.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics34.cpp; sourceTree = ""; }; + D53CD0372A7BAE8100CAD911 /* mscorlib5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib5.cpp; sourceTree = ""; }; + D53CD0382A7BAE8100CAD911 /* UnityEngine.AndroidJNIModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.AndroidJNIModule.cpp; sourceTree = ""; }; + D53CD0392A7BAE8100CAD911 /* Assembly-CSharp_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = "Assembly-CSharp_CodeGen.c"; sourceTree = ""; }; + D53CD03A2A7BAE8100CAD911 /* Assembly-CSharp30.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp30.cpp"; sourceTree = ""; }; + D53CD03B2A7BAE8100CAD911 /* Assembly-CSharp24.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp24.cpp"; sourceTree = ""; }; + D53CD03C2A7BAE8100CAD911 /* Whinarn.UnityMeshSimplifier.Runtime_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = Whinarn.UnityMeshSimplifier.Runtime_CodeGen.c; sourceTree = ""; }; + D53CD03D2A7BAE8100CAD911 /* Assembly-CSharp4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp4.cpp"; sourceTree = ""; }; + D53CD03E2A7BAE8100CAD911 /* Assembly-CSharp18.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp18.cpp"; sourceTree = ""; }; + D53CD03F2A7BAE8100CAD911 /* UnityEngine.UnityWebRequestAudioModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UnityWebRequestAudioModule.cpp; sourceTree = ""; }; + D53CD0402A7BAE8100CAD911 /* System.Numerics_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = System.Numerics_CodeGen.c; sourceTree = ""; }; + D53CD0412A7BAE8100CAD911 /* Generics8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics8.cpp; sourceTree = ""; }; + D53CD0422A7BAE8100CAD911 /* UnityEngine.AudioModule_CodeGen.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = UnityEngine.AudioModule_CodeGen.c; sourceTree = ""; }; + D53CD0432A7BAE8100CAD911 /* System.Xml9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml9.cpp; sourceTree = ""; }; + D53CD0442A7BAE8100CAD911 /* UnityEngine.UIElementsModule6.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule6.cpp; sourceTree = ""; }; + D53CD0452A7BAE8100CAD911 /* UnityEngine.UIElementsModule7.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UIElementsModule7.cpp; sourceTree = ""; }; + D53CD0462A7BAE8100CAD911 /* System.Xml8.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = System.Xml8.cpp; sourceTree = ""; }; + D53CD0472A7BAE8100CAD911 /* Generics9.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics9.cpp; sourceTree = ""; }; + D53CD0482A7BAE8100CAD911 /* Assembly-CSharp19.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp19.cpp"; sourceTree = ""; }; + D53CD0492A7BAE8100CAD911 /* Assembly-CSharp5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp5.cpp"; sourceTree = ""; }; + D53CD04A2A7BAE8100CAD911 /* Assembly-CSharp25.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp25.cpp"; sourceTree = ""; }; + D53CD04B2A7BAE8100CAD911 /* Unity.Notifications.iOS.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Unity.Notifications.iOS.cpp; sourceTree = ""; }; + D53CD04C2A7BAE8100CAD911 /* Assembly-CSharp31.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "Assembly-CSharp31.cpp"; sourceTree = ""; }; + D53CD04D2A7BAE8100CAD911 /* Generics.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics.cpp; sourceTree = ""; }; + D53CD04E2A7BAE8100CAD911 /* UnityEngine.UnityWebRequestModule.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = UnityEngine.UnityWebRequestModule.cpp; sourceTree = ""; }; + D53CD04F2A7BAE8100CAD911 /* mscorlib4.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mscorlib4.cpp; sourceTree = ""; }; + D53CD0502A7BAE8100CAD911 /* Generics35.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics35.cpp; sourceTree = ""; }; + D53CD0512A7BAE8100CAD911 /* Generics21.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Generics21.cpp; sourceTree = ""; }; D59AB8462A68FC2200433200 /* StoreObserver.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = StoreObserver.m; sourceTree = ""; }; D59AB8492A68FC5200433200 /* StoreObserver.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = StoreObserver.h; sourceTree = ""; }; D59AB84A2A68FC7200433200 /* AppConfiguration.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppConfiguration.h; sourceTree = ""; }; @@ -1376,7 +1877,6 @@ D5BF397429C9B77E00EC6351 /* UIViewController+Logger.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIViewController+Logger.h"; sourceTree = ""; }; D5BF397529C9B79400EC6351 /* UIViewController+Logger.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = "UIViewController+Logger.mm"; sourceTree = ""; }; D5BF397729C9B8C000EC6351 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = ""; }; - D5C03B6F2A49A808002E758D /* Data */ = {isa = PBXFileReference; lastKnownFileType = folder; name = Data; path = "../../game/wallet-test/target/ios/Data"; sourceTree = ""; }; D5DE834C29C831E20029E408 /* UIViewController+Share.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIViewController+Share.h"; sourceTree = ""; }; D5DE834E29C831FE0029E408 /* UIViewController+Share.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = "UIViewController+Share.mm"; sourceTree = ""; }; D82C4A5193DCF9EF3D188459 /* LaunchScreen-iPad.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "LaunchScreen-iPad.png"; sourceTree = SOURCE_ROOT; }; @@ -1394,6 +1894,7 @@ D507D5F52994C63E00CF3953 /* Metal.framework in Frameworks */, D507D6062994C69800CF3953 /* CoreTelephony.framework in Frameworks */, D507D5FE2994C67500CF3953 /* CoreMedia.framework in Frameworks */, + D53CC8AC2A7BA29800CAD911 /* libdivesensor.a in Frameworks */, D507D6042994C69000CF3953 /* UIKit.framework in Frameworks */, D507D5FC2994C67000CF3953 /* CoreGraphics.framework in Frameworks */, D507C8B42994A01000CF3953 /* JavaScriptCore.framework in Frameworks */, @@ -1407,20 +1908,27 @@ D507D6002994C67A00CF3953 /* CoreVideo.framework in Frameworks */, D73241D4841253D964E0EAE6 /* StoreKit.framework in Frameworks */, D507D5F02994C62A00CF3953 /* libil2cpp.a in Frameworks */, + D53CC8832A7BA11200CAD911 /* UserNotifications.framework in Frameworks */, D507D5EF2994C62A00CF3953 /* baselib.a in Frameworks */, + D53CC8AF2A7BA29900CAD911 /* libtolua.a in Frameworks */, D507D5F62994C64100CF3953 /* libiconv.2.tbd in Frameworks */, D507D6072994C69A00CF3953 /* GameController.framework in Frameworks */, + D53CC8852A7BA11D00CAD911 /* VideoToolbox.framework in Frameworks */, D507D5F72994C64400CF3953 /* AVKit.framework in Frameworks */, D507D5FB2994C66B00CF3953 /* AVFoundation.framework in Frameworks */, + D53CC8AD2A7BA29800CAD911 /* libyoume_voice_engine.a in Frameworks */, D507D5DE2994C62900CF3953 /* libiPhone-lib.a in Frameworks */, + D53CC8AB2A7BA29800CAD911 /* libYouMeCommon.a in Frameworks */, D507C8AE29949FD900CF3953 /* libicucore.A.tbd in Frameworks */, D507D5F92994C66600CF3953 /* CoreText.framework in Frameworks */, D507D6012994C68100CF3953 /* OpenAL.framework in Frameworks */, D507D6032994C68C00CF3953 /* UnityAds.framework in Frameworks */, D507C8B029949FEB00CF3953 /* libsqlite3.tbd in Frameworks */, D507C8B82994A02D00CF3953 /* libcocos2d.a in Frameworks */, + D53CC8AE2A7BA29900CAD911 /* libffmpeg3.3.a in Frameworks */, D507D5F82994C65C00CF3953 /* MediaToolbox.framework in Frameworks */, D507D5FA2994C66900CF3953 /* AudioToolbox.framework in Frameworks */, + D53CC8B12A7BA2EF00CAD911 /* ReplayKit.framework in Frameworks */, 3A43E1D461D66447DBE16770 /* Pods_Unity_iPhone.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; @@ -1473,9 +1981,9 @@ 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = { isa = PBXGroup; children = ( + D53CCEC92A7BAE6600CAD911 /* Data */, D59AB85A2A6A387A00433200 /* test-in-app-purchase.storekit */, D59AB8482A68FC2900433200 /* purchase */, - D5C03B6F2A49A808002E758D /* Data */, D526FA3C299498E3002A2290 /* cocos2d_libs.xcodeproj */, D507D6132994DEE900CF3953 /* js */, D507D30D2994C62900CF3953 /* Libraries */, @@ -1503,6 +2011,10 @@ 29B97323FDCFA39411CA2CEA /* Frameworks */ = { isa = PBXGroup; children = ( + D53CC8B72A7BA67000CAD911 /* libresolv.9.tbd */, + D53CC8B02A7BA2EF00CAD911 /* ReplayKit.framework */, + D53CC8842A7BA11D00CAD911 /* VideoToolbox.framework */, + D53CC8812A7BA11200CAD911 /* UserNotifications.framework */, D507D60B2994CB5700CF3953 /* CoreFoundation.framework */, D507C8B52994A01700CF3953 /* libz.tbd */, D507C8B32994A01000CF3953 /* JavaScriptCore.framework */, @@ -1720,7 +2232,7 @@ D507D14B2994C61600CF3953 /* Classes */ = { isa = PBXGroup; children = ( - D55758EA2A5FAC15009369FC /* Native */, + D53CCECB2A7BAE8000CAD911 /* Native */, D507D2362994C61700CF3953 /* CrashReporter.h */, D507D2312994C61700CF3953 /* CrashReporter.mm */, D507D18A2994C61600CF3953 /* DynamicLibEngineAPI-functions.h */, @@ -1837,6 +2349,9 @@ D507D30D2994C62900CF3953 /* Libraries */ = { isa = PBXGroup; children = ( + D53CC8A42A7BA29800CAD911 /* Plugins */, + D53CC8952A7BA28D00CAD911 /* com.unity.mobile.notifications */, + D53CC8862A7BA24A00CAD911 /* AppsFlyer */, D507D32F2994C62900CF3953 /* baselib.a */, D507D3122994C62900CF3953 /* com.unity.ads */, D507D5CD2994C62900CF3953 /* com.unity.purchasing */, @@ -3335,171 +3850,505 @@ name = Products; sourceTree = ""; }; - D55758EA2A5FAC15009369FC /* Native */ = { + D53CC8862A7BA24A00CAD911 /* AppsFlyer */ = { isa = PBXGroup; children = ( - D55758EB2A5FAC15009369FC /* Il2CppGenericAdjustorThunkTable.c */, - D55758EC2A5FAC15009369FC /* Generics10.cpp */, - D55758ED2A5FAC15009369FC /* mscorlib9.cpp */, - D55758EE2A5FAC15009369FC /* UnityEngine.UnityAnalyticsModule.cpp */, - D55758EF2A5FAC15009369FC /* Il2CppGenericMethodTable.c */, - D55758F02A5FAC15009369FC /* Generics4.cpp */, - D55758F12A5FAC15009369FC /* Generics5.cpp */, - D55758F22A5FAC15009369FC /* System.Xml_CodeGen.c */, - D55758F32A5FAC15009369FC /* GenericMethods6.cpp */, - D55758F42A5FAC15009369FC /* mscorlib8.cpp */, - D55758F52A5FAC15009369FC /* Generics11.cpp */, - D55758F62A5FAC15009369FC /* UnityEngine.Physics2DModule_CodeGen.c */, - D55758F72A5FAC15009369FC /* Il2CppCCTypeValuesTable.cpp */, - D55758F82A5FAC15009369FC /* Generics13.cpp */, - D55758F92A5FAC15009369FC /* GenericMethods4.cpp */, - D55758FA2A5FAC15009369FC /* Il2CppInteropDataTable.cpp */, - D55758FB2A5FAC15009369FC /* Generics7.cpp */, - D55758FC2A5FAC15009369FC /* UnityEngine.UIElementsModule9.cpp */, - D55758FD2A5FAC15009369FC /* UnityEngine.UIElementsModule8.cpp */, - D55758FE2A5FAC15009369FC /* UnityICallRegistration.cpp */, - D55758FF2A5FAC15009369FC /* Generics6.cpp */, - D55759002A5FAC15009369FC /* GenericMethods5.cpp */, - D55759012A5FAC15009369FC /* UnityEngine_CodeGen.c */, - D55759022A5FAC15009369FC /* Generics12.cpp */, - D55759032A5FAC15009369FC /* Generics16.cpp */, - D55759042A5FAC15009369FC /* GenericMethods1.cpp */, - D55759052A5FAC15009369FC /* UnityEngine.UIElementsNativeModule_CodeGen.c */, - D55759062A5FAC15009369FC /* Generics2.cpp */, - D55759072A5FAC15009369FC /* UnityEngine.TextCoreFontEngineModule_CodeGen.c */, - D55759082A5FAC15009369FC /* UnityEngine.PhysicsModule_CodeGen.c */, - D55759092A5FAC15009369FC /* System1.cpp */, - D557590A2A5FAC15009369FC /* Generics3.cpp */, - D557590B2A5FAC15009369FC /* UnityEngine.AndroidJNIModule_CodeGen.c */, - D557590C2A5FAC15009369FC /* Assembly-CSharp.cpp */, - D557590D2A5FAC15009369FC /* Generics17.cpp */, - D557590E2A5FAC15009369FC /* UnityEngine.UI_CodeGen.c */, - D557590F2A5FAC15009369FC /* Generics15.cpp */, - D55759102A5FAC15009369FC /* UnityEngine.SpriteShapeModule.cpp */, - D55759112A5FAC15009369FC /* UnityEngine.TextRenderingModule.cpp */, - D55759122A5FAC15009369FC /* GenericMethods2.cpp */, - D55759132A5FAC15009369FC /* System3.cpp */, - D55759142A5FAC15009369FC /* Generics1.cpp */, - D55759152A5FAC15009369FC /* __Generated_CodeGen.c */, - D55759162A5FAC15009369FC /* System.Configuration.cpp */, - D55759172A5FAC15009369FC /* Il2CppCodeRegistration.cpp */, - D55759182A5FAC15009369FC /* System2.cpp */, - D55759192A5FAC15009369FC /* Il2CppCCalculateFieldValues1.cpp */, - D557591A2A5FAC15009369FC /* __Generated.cpp */, - D557591B2A5FAC15009369FC /* GenericMethods3.cpp */, - D557591C2A5FAC15009369FC /* Generics14.cpp */, - D557591D2A5FAC15009369FC /* mscorlib15.cpp */, - D557591E2A5FAC15009369FC /* UnityEngine.UIElementsModule_CodeGen.c */, - D557591F2A5FAC15009369FC /* Il2CppCCalculateTypeValues.cpp */, - D55759202A5FAC15009369FC /* Il2CppCCalculateFieldValues.cpp */, - D55759212A5FAC15009369FC /* UnityEngine.AudioModule.cpp */, - D55759222A5FAC15009369FC /* Il2CppGenericMethodPointerTable.c */, - D55759232A5FAC15009369FC /* mscorlib14.cpp */, - D55759242A5FAC15009369FC /* UnityEngine.CoreModule_CodeGen.c */, - D55759252A5FAC15009369FC /* UnityEngine.AnimationModule_CodeGen.c */, - D55759262A5FAC15009369FC /* UnityEngine.AnimationModule.cpp */, - D55759272A5FAC15009369FC /* UnityEngine.TextRenderingModule_CodeGen.c */, - D55759282A5FAC15009369FC /* mscorlib16.cpp */, - D55759292A5FAC15009369FC /* mscorlib17.cpp */, - D557592A2A5FAC15009369FC /* UnityEngine.GameCenterModule.cpp */, - D557592B2A5FAC15009369FC /* mscorlib13.cpp */, - D557592C2A5FAC15009369FC /* mscorlib.cpp */, - D557592D2A5FAC15009369FC /* mscorlib12.cpp */, - D557592E2A5FAC15009369FC /* UnityEngine.UnityWebRequestModule_CodeGen.c */, - D557592F2A5FAC15009369FC /* mscorlib10.cpp */, - D55759302A5FAC15009369FC /* Il2CppRgctxTable.c */, - D55759312A5FAC15009369FC /* UnityClassRegistration.cpp */, - D55759322A5FAC15009369FC /* UnityEngine.InputLegacyModule.cpp */, - D55759332A5FAC15009369FC /* mscorlib11.cpp */, - D55759342A5FAC15009369FC /* UnityEngine.SpriteShapeModule_CodeGen.c */, - D55759352A5FAC15009369FC /* UnityEngine.UIElementsModule11.cpp */, - D55759362A5FAC15009369FC /* UnityEngine.IMGUIModule_CodeGen.c */, - D55759372A5FAC15009369FC /* Il2CppTypeDefinitions.c */, - D55759382A5FAC15009369FC /* UnityEngine.UI.cpp */, - D55759392A5FAC15009369FC /* System_CodeGen.c */, - D557593A2A5FAC15009369FC /* UnityEngine.IMGUIModule1.cpp */, - D557593B2A5FAC15009369FC /* UnityEngine.UIModule.cpp */, - D557593C2A5FAC15009369FC /* UnityEngine.UIElementsModule.cpp */, - D557593D2A5FAC15009369FC /* UnityEngine.UIElementsModule10.cpp */, - D557593E2A5FAC15009369FC /* UnityEngine.UIElementsModule12.cpp */, - D557593F2A5FAC15009369FC /* UnityEngine.cpp */, - D55759402A5FAC15009369FC /* UnityEngine.SharedInternalsModule_CodeGen.c */, - D55759412A5FAC15009369FC /* mscorlib_CodeGen.c */, - D55759422A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule.cpp */, - D55759432A5FAC15009369FC /* Il2CppMetadataRegistration.c */, - D55759442A5FAC15009369FC /* UnityEngine.Physics2DModule.cpp */, - D55759452A5FAC15009369FC /* Il2CppGenericMethodDefinitions.c */, - D55759462A5FAC15009369FC /* UnityEngine.SharedInternalsModule.cpp */, - D55759472A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule2.cpp */, - D55759482A5FAC15009369FC /* UnityEngine.UIModule_CodeGen.c */, - D55759492A5FAC15009369FC /* System.cpp */, - D557594A2A5FAC15009369FC /* Mono.Security.cpp */, - D557594B2A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule3.cpp */, - D557594C2A5FAC15009369FC /* System.Configuration_CodeGen.c */, - D557594D2A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule_CodeGen.c */, - D557594E2A5FAC15009369FC /* UnityEngine.TextCoreTextEngineModule1.cpp */, - D557594F2A5FAC15009369FC /* UnityEngine.GridModule.cpp */, - D55759502A5FAC15009369FC /* Il2CppMetadataUsage.c */, - D55759512A5FAC15009369FC /* Il2CppReversePInvokeWrapperTable.cpp */, - D55759522A5FAC15009369FC /* UnityEngine.UIElementsNativeModule.cpp */, - D55759532A5FAC15009369FC /* Generics19.cpp */, - D55759542A5FAC15009369FC /* Il2CppInvokerTable.cpp */, - D55759552A5FAC15009369FC /* UnityEngine.UI1.cpp */, - D55759562A5FAC15009369FC /* Generics25.cpp */, - D55759572A5FAC15009369FC /* Mono.Security_CodeGen.c */, - D55759582A5FAC15009369FC /* UnityEngine.UIElementsModule3.cpp */, - D55759592A5FAC15009369FC /* UnityEngine.UIElementsModule2.cpp */, - D557595A2A5FAC15009369FC /* UnityEngine.CoreModule.cpp */, - D557595B2A5FAC15009369FC /* Il2CppGenericClassTable.c */, - D557595C2A5FAC15009369FC /* UnityEngine.GridModule_CodeGen.c */, - D557595D2A5FAC15009369FC /* System.Xml.cpp */, - D557595E2A5FAC15009369FC /* UnityEngine.CoreModule1.cpp */, - D557595F2A5FAC15009369FC /* Il2CppGenericInstDefinitions.c */, - D55759602A5FAC15009369FC /* mscorlib1.cpp */, - D55759612A5FAC15009369FC /* Generics24.cpp */, - D55759622A5FAC15009369FC /* Generics18.cpp */, - D55759632A5FAC15009369FC /* UnityEngine.PhysicsModule.cpp */, - D55759642A5FAC15009369FC /* UnityEngine.TextCoreFontEngineModule.cpp */, - D55759652A5FAC15009369FC /* UnityEngine.UI2.cpp */, - D55759662A5FAC15009369FC /* Generics26.cpp */, - D55759672A5FAC15009369FC /* mscorlib3.cpp */, - D55759682A5FAC16009369FC /* UnityEngine.GameCenterModule_CodeGen.c */, - D55759692A5FAC16009369FC /* UnityEngine.TilemapModule.cpp */, - D557596A2A5FAC16009369FC /* UnityEngine.UIElementsModule1.cpp */, - D557596B2A5FAC16009369FC /* UnityEngine.UnityAnalyticsModule_CodeGen.c */, - D557596C2A5FAC16009369FC /* Il2CppCCFieldValuesTable.cpp */, - D557596D2A5FAC16009369FC /* mscorlib2.cpp */, - D557596E2A5FAC16009369FC /* System.Core_CodeGen.c */, - D557596F2A5FAC16009369FC /* Generics27.cpp */, - D55759702A5FAC16009369FC /* UnityEngine.UI3.cpp */, - D55759712A5FAC16009369FC /* GenericMethods.cpp */, - D55759722A5FAC16009369FC /* Generics23.cpp */, - D55759732A5FAC16009369FC /* UnityEngine.TilemapModule_CodeGen.c */, - D55759742A5FAC16009369FC /* mscorlib6.cpp */, - D55759752A5FAC16009369FC /* UnresolvedVirtualCallStubs.cpp */, - D55759762A5FAC16009369FC /* UnityEngine.UIElementsModule5.cpp */, - D55759772A5FAC16009369FC /* UnityEngine.UIElementsModule4.cpp */, - D55759782A5FAC16009369FC /* UnityEngine.IMGUIModule.cpp */, - D55759792A5FAC16009369FC /* System.Core.cpp */, - D557597A2A5FAC16009369FC /* UnityEngine.InputLegacyModule_CodeGen.c */, - D557597B2A5FAC16009369FC /* mscorlib7.cpp */, - D557597C2A5FAC16009369FC /* Generics22.cpp */, - D557597D2A5FAC16009369FC /* Generics20.cpp */, - D557597E2A5FAC16009369FC /* mscorlib5.cpp */, - D557597F2A5FAC16009369FC /* UnityEngine.AndroidJNIModule.cpp */, - D55759802A5FAC16009369FC /* Assembly-CSharp_CodeGen.c */, - D55759812A5FAC16009369FC /* Generics8.cpp */, - D55759822A5FAC16009369FC /* UnityEngine.AudioModule_CodeGen.c */, - D55759832A5FAC16009369FC /* UnityEngine.UIElementsModule6.cpp */, - D55759842A5FAC16009369FC /* UnityEngine.UIElementsModule7.cpp */, - D55759852A5FAC16009369FC /* Generics9.cpp */, - D55759862A5FAC16009369FC /* Generics.cpp */, - D55759872A5FAC16009369FC /* UnityEngine.UnityWebRequestModule.cpp */, - D55759882A5FAC16009369FC /* mscorlib4.cpp */, - D55759892A5FAC16009369FC /* Generics21.cpp */, + D53CC8872A7BA24A00CAD911 /* Plugins */, + ); + path = AppsFlyer; + sourceTree = ""; + }; + D53CC8872A7BA24A00CAD911 /* Plugins */ = { + isa = PBXGroup; + children = ( + D53CC8882A7BA24A00CAD911 /* iOS */, + ); + path = Plugins; + sourceTree = ""; + }; + D53CC8882A7BA24A00CAD911 /* iOS */ = { + isa = PBXGroup; + children = ( + D53CC8892A7BA24A00CAD911 /* AppsFlyeriOSWrapper.mm */, + D53CC88A2A7BA24A00CAD911 /* AppsFlyer+AppController.m */, + D53CC88B2A7BA24A00CAD911 /* AppsFlyerAttribution.h */, + D53CC88C2A7BA24A00CAD911 /* AppsFlyeriOSWrapper.h */, + D53CC88D2A7BA24A00CAD911 /* AppsFlyerAppController.mm */, + D53CC88E2A7BA24A00CAD911 /* AFUnityUtils.mm */, + D53CC88F2A7BA24A00CAD911 /* AppsFlyerAttribution.m */, + ); + path = iOS; + sourceTree = ""; + }; + D53CC8952A7BA28D00CAD911 /* com.unity.mobile.notifications */ = { + isa = PBXGroup; + children = ( + D53CC8962A7BA28D00CAD911 /* Runtime */, + ); + path = com.unity.mobile.notifications; + sourceTree = ""; + }; + D53CC8962A7BA28D00CAD911 /* Runtime */ = { + isa = PBXGroup; + children = ( + D53CC8972A7BA28D00CAD911 /* iOS */, + ); + path = Runtime; + sourceTree = ""; + }; + D53CC8972A7BA28D00CAD911 /* iOS */ = { + isa = PBXGroup; + children = ( + D53CC8982A7BA28D00CAD911 /* Plugins */, + ); + path = iOS; + sourceTree = ""; + }; + D53CC8982A7BA28D00CAD911 /* Plugins */ = { + isa = PBXGroup; + children = ( + D53CC8992A7BA28D00CAD911 /* iOS */, + ); + path = Plugins; + sourceTree = ""; + }; + D53CC8992A7BA28D00CAD911 /* iOS */ = { + isa = PBXGroup; + children = ( + D53CC89A2A7BA28D00CAD911 /* notifications */, + ); + path = iOS; + sourceTree = ""; + }; + D53CC89A2A7BA28D00CAD911 /* notifications */ = { + isa = PBXGroup; + children = ( + D53CC89B2A7BA28D00CAD911 /* UnityAppController+Notifications.h */, + D53CC89C2A7BA28D00CAD911 /* UnityNotificationManager.m */, + D53CC89D2A7BA28D00CAD911 /* UnityNotificationWrapper.m */, + D53CC89E2A7BA28D00CAD911 /* UnityNotificationManager.h */, + D53CC89F2A7BA28D00CAD911 /* UnityNotificationWrapper.h */, + D53CC8A02A7BA28D00CAD911 /* UnityAppController+Notifications.mm */, + ); + path = notifications; + sourceTree = ""; + }; + D53CC8A42A7BA29800CAD911 /* Plugins */ = { + isa = PBXGroup; + children = ( + D53CC8A52A7BA29800CAD911 /* iOS */, + ); + path = Plugins; + sourceTree = ""; + }; + D53CC8A52A7BA29800CAD911 /* iOS */ = { + isa = PBXGroup; + children = ( + D53CC8A62A7BA29800CAD911 /* libYouMeCommon.a */, + D53CC8A72A7BA29800CAD911 /* libdivesensor.a */, + D53CC8A82A7BA29800CAD911 /* libyoume_voice_engine.a */, + D53CC8A92A7BA29800CAD911 /* libffmpeg3.3.a */, + D53CC8AA2A7BA29800CAD911 /* libtolua.a */, + ); + path = iOS; + sourceTree = ""; + }; + D53CCECB2A7BAE8000CAD911 /* Native */ = { + isa = PBXGroup; + children = ( + D53CCECC2A7BAE8000CAD911 /* Generics38.cpp */, + D53CCECD2A7BAE8000CAD911 /* Il2CppGenericAdjustorThunkTable.c */, + D53CCECE2A7BAE8000CAD911 /* Generics10.cpp */, + D53CCECF2A7BAE8000CAD911 /* GenericMethods12.cpp */, + D53CCED02A7BAE8000CAD911 /* mscorlib9.cpp */, + D53CCED12A7BAE8000CAD911 /* GenericMethods7.cpp */, + D53CCED22A7BAE8000CAD911 /* Assembly-CSharp28.cpp */, + D53CCED32A7BAE8000CAD911 /* UnityEngine.UnityAnalyticsModule.cpp */, + D53CCED42A7BAE8000CAD911 /* Il2CppGenericMethodTable.c */, + D53CCED52A7BAE8000CAD911 /* Assembly-CSharp14.cpp */, + D53CCED62A7BAE8000CAD911 /* Assembly-CSharp8.cpp */, + D53CCED72A7BAE8000CAD911 /* UnityEngine.VRModule_CodeGen.c */, + D53CCED82A7BAE8000CAD911 /* System6.cpp */, + D53CCED92A7BAE8000CAD911 /* Generics4.cpp */, + D53CCEDA2A7BAE8000CAD911 /* System.Xml5.cpp */, + D53CCEDB2A7BAE8000CAD911 /* System.Xml4.cpp */, + D53CCEDC2A7BAE8000CAD911 /* Generics5.cpp */, + D53CCEDD2A7BAE8000CAD911 /* System7.cpp */, + D53CCEDE2A7BAE8000CAD911 /* Assembly-CSharp9.cpp */, + D53CCEDF2A7BAE8000CAD911 /* Assembly-CSharp15.cpp */, + D53CCEE02A7BAE8000CAD911 /* Assembly-CSharp29.cpp */, + D53CCEE12A7BAE8000CAD911 /* System.Xml_CodeGen.c */, + D53CCEE22A7BAE8000CAD911 /* GenericMethods6.cpp */, + D53CCEE32A7BAE8000CAD911 /* GenericMethods13.cpp */, + D53CCEE42A7BAE8000CAD911 /* mscorlib8.cpp */, + D53CCEE52A7BAE8000CAD911 /* Generics11.cpp */, + D53CCEE62A7BAE8000CAD911 /* Generics39.cpp */, + D53CCEE72A7BAE8000CAD911 /* UnityEngine.Physics2DModule_CodeGen.c */, + D53CCEE82A7BAE8000CAD911 /* Il2CppCCTypeValuesTable.cpp */, + D53CCEE92A7BAE8000CAD911 /* Generics13.cpp */, + D53CCEEA2A7BAE8000CAD911 /* UnityEngine.VFXModule_CodeGen.c */, + D53CCEEB2A7BAE8000CAD911 /* GenericMethods11.cpp */, + D53CCEEC2A7BAE8000CAD911 /* GenericMethods4.cpp */, + D53CCEED2A7BAE8000CAD911 /* Il2CppInteropDataTable.cpp */, + D53CCEEE2A7BAE8000CAD911 /* Assembly-CSharp17.cpp */, + D53CCEEF2A7BAE8000CAD911 /* Generics7.cpp */, + D53CCEF02A7BAE8000CAD911 /* System5.cpp */, + D53CCEF12A7BAE8000CAD911 /* System.Xml6.cpp */, + D53CCEF22A7BAE8000CAD911 /* UnityEngine.UIElementsModule9.cpp */, + D53CCEF32A7BAE8000CAD911 /* UnityEngine.UIElementsModule8.cpp */, + D53CCEF42A7BAE8000CAD911 /* UnityICallRegistration.cpp */, + D53CCEF52A7BAE8000CAD911 /* System.Xml7.cpp */, + D53CCEF62A7BAE8000CAD911 /* System4.cpp */, + D53CCEF72A7BAE8000CAD911 /* Generics6.cpp */, + D53CCEF82A7BAE8000CAD911 /* Assembly-CSharp16.cpp */, + D53CCEF92A7BAE8000CAD911 /* CString.cpp */, + D53CCEFA2A7BAE8000CAD911 /* GenericMethods5.cpp */, + D53CCEFB2A7BAE8000CAD911 /* GenericMethods10.cpp */, + D53CCEFC2A7BAE8000CAD911 /* UnityEngine_CodeGen.c */, + D53CCEFD2A7BAE8000CAD911 /* Generics12.cpp */, + D53CCEFE2A7BAE8000CAD911 /* Generics16.cpp */, + D53CCEFF2A7BAE8000CAD911 /* GenericMethods1.cpp */, + D53CCF002A7BAE8000CAD911 /* GenericMethods14.cpp */, + D53CCF012A7BAE8000CAD911 /* Il2CppCCalculateFieldValues3.cpp */, + D53CCF022A7BAE8000CAD911 /* UnityEngine.UIElementsNativeModule_CodeGen.c */, + D53CCF032A7BAE8000CAD911 /* Assembly-CSharp12.cpp */, + D53CCF042A7BAE8000CAD911 /* System.Runtime.CompilerServices.Unsafe_CodeGen.c */, + D53CCF052A7BAE8000CAD911 /* Generics2.cpp */, + D53CCF062A7BAE8000CAD911 /* BestHTTP41.cpp */, + D53CCF072A7BAE8000CAD911 /* System.Xml3.cpp */, + D53CCF082A7BAE8000CAD911 /* UnityEngine.TextCoreFontEngineModule_CodeGen.c */, + D53CCF092A7BAE8000CAD911 /* UnityEngine.PhysicsModule_CodeGen.c */, + D53CCF0A2A7BAE8000CAD911 /* System.Xml2.cpp */, + D53CCF0B2A7BAE8000CAD911 /* BestHTTP40.cpp */, + D53CCF0C2A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh_CodeGen.c */, + D53CCF0D2A7BAE8000CAD911 /* System1.cpp */, + D53CCF0E2A7BAE8000CAD911 /* Generics3.cpp */, + D53CCF0F2A7BAE8000CAD911 /* Assembly-CSharp13.cpp */, + D53CCF102A7BAE8000CAD911 /* Il2CppCCalculateFieldValues2.cpp */, + D53CCF112A7BAE8000CAD911 /* UnityEngine.AndroidJNIModule_CodeGen.c */, + D53CCF122A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh1.cpp */, + D53CCF132A7BAE8000CAD911 /* Assembly-CSharp.cpp */, + D53CCF142A7BAE8000CAD911 /* Generics17.cpp */, + D53CCF152A7BAE8000CAD911 /* UnityEngine.UI_CodeGen.c */, + D53CCF162A7BAE8000CAD911 /* Generics15.cpp */, + D53CCF172A7BAE8000CAD911 /* UnityEngine.SpriteShapeModule.cpp */, + D53CCF182A7BAE8000CAD911 /* UnityEngine.TextRenderingModule.cpp */, + D53CCF192A7BAE8000CAD911 /* Generics29.cpp */, + D53CCF1A2A7BAE8000CAD911 /* GenericMethods2.cpp */, + D53CCF1B2A7BAE8000CAD911 /* Assembly-CSharp11.cpp */, + D53CCF1C2A7BAE8000CAD911 /* Assembly-CSharp39.cpp */, + D53CCF1D2A7BAE8000CAD911 /* System3.cpp */, + D53CCF1E2A7BAE8000CAD911 /* Generics1.cpp */, + D53CCF1F2A7BAE8000CAD911 /* __Generated_CodeGen.c */, + D53CCF202A7BAE8000CAD911 /* BestHTTP42.cpp */, + D53CCF212A7BAE8000CAD911 /* System.Configuration.cpp */, + D53CCF222A7BAE8000CAD911 /* System.Xml1.cpp */, + D53CCF232A7BAE8000CAD911 /* Il2CppCodeRegistration.cpp */, + D53CCF242A7BAE8000CAD911 /* BestHTTP43.cpp */, + D53CCF252A7BAE8000CAD911 /* System2.cpp */, + D53CCF262A7BAE8000CAD911 /* Assembly-CSharp38.cpp */, + D53CCF272A7BAE8000CAD911 /* Google.Protobuf.cpp */, + D53CCF282A7BAE8000CAD911 /* Assembly-CSharp10.cpp */, + D53CCF292A7BAE8000CAD911 /* Il2CppCCalculateFieldValues1.cpp */, + D53CCF2A2A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh2.cpp */, + D53CCF2B2A7BAE8000CAD911 /* __Generated.cpp */, + D53CCF2C2A7BAE8000CAD911 /* GenericMethods3.cpp */, + D53CCF2D2A7BAE8000CAD911 /* Generics28.cpp */, + D53CCF2E2A7BAE8000CAD911 /* Generics14.cpp */, + D53CCF2F2A7BAE8000CAD911 /* UnityEngine.UnityWebRequestAudioModule_CodeGen.c */, + D53CCF302A7BAE8000CAD911 /* UnityEngine.UnityWebRequestWWWModule.cpp */, + D53CCF312A7BAE8000CAD911 /* BestHTTP.cpp */, + D53CCF322A7BAE8000CAD911 /* mscorlib15.cpp */, + D53CCF332A7BAE8000CAD911 /* UnityEngine.UIElementsModule_CodeGen.c */, + D53CCF342A7BAE8000CAD911 /* BestHTTP18.cpp */, + D53CCF352A7BAE8000CAD911 /* BestHTTP30.cpp */, + D53CCF362A7BAE8000CAD911 /* UnityEngine.DirectorModule_CodeGen.c */, + D53CCF372A7BAE8000CAD911 /* Il2CppCCalculateTypeValues.cpp */, + D53CCF382A7BAE8000CAD911 /* BestHTTP24.cpp */, + D53CCF392A7BAE8000CAD911 /* System13.cpp */, + D53CCF3A2A7BAE8000CAD911 /* System12.cpp */, + D53CCF3B2A7BAE8000CAD911 /* Il2CppCCalculateFieldValues.cpp */, + D53CCF3C2A7BAE8000CAD911 /* UnityEngine.AudioModule.cpp */, + D53CCF3D2A7BAE8000CAD911 /* UnityEngine.XRModule.cpp */, + D53CCF3E2A7BAE8000CAD911 /* BestHTTP1.cpp */, + D53CCF3F2A7BAE8000CAD911 /* Il2CppGenericMethodPointerTable.c */, + D53CCF402A7BAE8000CAD911 /* BestHTTP25.cpp */, + D53CCF412A7BAE8000CAD911 /* BestHTTP31.cpp */, + D53CCF422A7BAE8000CAD911 /* UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c */, + D53CCF432A7BAE8000CAD911 /* BestHTTP19.cpp */, + D53CCF442A7BAE8000CAD911 /* mscorlib14.cpp */, + D53CCF452A7BAE8000CAD911 /* UnityEngine.CoreModule_CodeGen.c */, + D53CCF462A7BAE8000CAD911 /* UnityEngine.AnimationModule_CodeGen.c */, + D53CCF472A7BAE8000CAD911 /* UnityEngine.AnimationModule.cpp */, + D53CCF482A7BAE8000CAD911 /* UnityEngine.VideoModule_CodeGen.c */, + D53CCF492A7BAE8000CAD911 /* UnityEngine.TextRenderingModule_CodeGen.c */, + D53CCF4A2A7BAE8000CAD911 /* Generics58.cpp */, + D53CCF4B2A7BAE8000CAD911 /* spine-unity_CodeGen.c */, + D53CCF4C2A7BAE8000CAD911 /* UnityEngine.UnityWebRequestWWWModule_CodeGen.c */, + D53CCF4D2A7BAE8000CAD911 /* mscorlib16.cpp */, + D53CCF4E2A7BAE8000CAD911 /* BestHTTP27.cpp */, + D53CCF4F2A7BAE8000CAD911 /* BestHTTP33.cpp */, + D53CCF502A7BAE8000CAD911 /* ICSharpCode.SharpZipLib4.cpp */, + D53CCF512A7BAE8000CAD911 /* BestHTTP3.cpp */, + D53CCF522A7BAE8000CAD911 /* BestHTTP_CodeGen.c */, + D53CCF532A7BAE8000CAD911 /* System10.cpp */, + D53CCF542A7BAE8000CAD911 /* System11.cpp */, + D53CCF552A7BAE8000CAD911 /* BestHTTP2.cpp */, + D53CCF562A7BAE8000CAD911 /* BestHTTP32.cpp */, + D53CCF572A7BAE8000CAD911 /* UnityEngine.AssetBundleModule.cpp */, + D53CCF582A7BAE8000CAD911 /* BestHTTP26.cpp */, + D53CCF592A7BAE8000CAD911 /* CString_CodeGen.c */, + D53CCF5A2A7BAE8000CAD911 /* mscorlib17.cpp */, + D53CCF5B2A7BAE8000CAD911 /* Generics59.cpp */, + D53CCF5C2A7BAE8000CAD911 /* Assembly-CSharp-firstpass_CodeGen.c */, + D53CCF5D2A7BAE8000CAD911 /* Generics49.cpp */, + D53CCF5E2A7BAE8000CAD911 /* UnityEngine.GameCenterModule.cpp */, + D53CCF5F2A7BAE8000CAD911 /* UnityEngine.XRModule_CodeGen.c */, + D53CCF602A7BAE8000CAD911 /* mscorlib13.cpp */, + D53CCF612A7BAE8000CAD911 /* BestHTTP22.cpp */, + D53CCF622A7BAE8000CAD911 /* BestHTTP36.cpp */, + D53CCF632A7BAE8000CAD911 /* ICSharpCode.SharpZipLib.cpp */, + D53CCF642A7BAE8000CAD911 /* Mono.Security1.cpp */, + D53CCF652A7BAE8000CAD911 /* ICSharpCode.SharpZipLib1.cpp */, + D53CCF662A7BAE8000CAD911 /* BestHTTP6.cpp */, + D53CCF672A7BAE8000CAD911 /* BestHTTP7.cpp */, + D53CCF682A7BAE8000CAD911 /* UnityEngine.InputModule_CodeGen.c */, + D53CCF692A7BAE8000CAD911 /* BestHTTP37.cpp */, + D53CCF6A2A7BAE8000CAD911 /* BestHTTP23.cpp */, + D53CCF6B2A7BAE8000CAD911 /* mscorlib.cpp */, + D53CCF6C2A7BAE8000CAD911 /* mscorlib12.cpp */, + D53CCF6D2A7BAE8000CAD911 /* UnityEngine.UnityWebRequestModule_CodeGen.c */, + D53CCF6E2A7BAE8000CAD911 /* Generics48.cpp */, + D53CCF6F2A7BAE8000CAD911 /* Generics60.cpp */, + D53CCF702A7BAE8000CAD911 /* UnityEngine.DirectorModule.cpp */, + D53CCF712A7BAE8000CAD911 /* mscorlib10.cpp */, + D53CCF722A7BAE8000CAD911 /* System.Xml11.cpp */, + D53CCF732A7BAE8000CAD911 /* BestHTTP35.cpp */, + D53CCF742A7BAE8000CAD911 /* BestHTTP21.cpp */, + D53CCF752A7BAE8000CAD911 /* Il2CppRgctxTable.c */, + D53CCF762A7BAE8000CAD911 /* UnityClassRegistration.cpp */, + D53CCF772A7BAE8000CAD911 /* BestHTTP5.cpp */, + D53CCF782A7BAE8000CAD911 /* ICSharpCode.SharpZipLib2.cpp */, + D53CCF792A7BAE8000CAD911 /* ICSharpCode.SharpZipLib3.cpp */, + D53CCF7A2A7BAE8000CAD911 /* UnityEngine.InputModule.cpp */, + D53CCF7B2A7BAE8000CAD911 /* BestHTTP4.cpp */, + D53CCF7C2A7BAE8000CAD911 /* Unity.Notifications.iOS_CodeGen.c */, + D53CCF7D2A7BAE8000CAD911 /* BestHTTP20.cpp */, + D53CCF7E2A7BAE8000CAD911 /* UnityEngine.VFXModule.cpp */, + D53CCF7F2A7BAE8000CAD911 /* System.Xml10.cpp */, + D53CCF802A7BAE8000CAD911 /* BestHTTP34.cpp */, + D53CCF812A7BAE8000CAD911 /* UnityEngine.InputLegacyModule.cpp */, + D53CCF822A7BAE8000CAD911 /* mscorlib11.cpp */, + D53CCF832A7BAE8000CAD911 /* CString1.cpp */, + D53CCF842A7BAE8000CAD911 /* UnityEngine.SpriteShapeModule_CodeGen.c */, + D53CCF852A7BAE8000CAD911 /* UnityEngine.UIElementsModule11.cpp */, + D53CCF862A7BAE8000CAD911 /* UnityEngine.IMGUIModule_CodeGen.c */, + D53CCF872A7BAE8000CAD911 /* UnityEngine.ImageConversionModule_CodeGen.c */, + D53CCF882A7BAE8000CAD911 /* Generics46.cpp */, + D53CCF892A7BAE8000CAD911 /* Generics52.cpp */, + D53CCF8A2A7BAE8000CAD911 /* Il2CppTypeDefinitions.c */, + D53CCF8B2A7BAE8000CAD911 /* mscorlib20.cpp */, + D53CCF8C2A7BAE8000CAD911 /* UnityEngine.UI.cpp */, + D53CCF8D2A7BAE8000CAD911 /* System_CodeGen.c */, + D53CCF8E2A7BAE8000CAD911 /* BestHTTP39.cpp */, + D53CCF8F2A7BAE8000CAD911 /* BestHTTP11.cpp */, + D53CCF902A7BAE8000CAD911 /* UnityEngine.IMGUIModule1.cpp */, + D53CCF912A7BAE8000CAD911 /* BestHTTP9.cpp */, + D53CCF922A7BAE8000CAD911 /* BestHTTP8.cpp */, + D53CCF932A7BAE8000CAD911 /* UnityEngine.UIModule.cpp */, + D53CCF942A7BAE8000CAD911 /* BestHTTP10.cpp */, + D53CCF952A7BAE8000CAD911 /* BestHTTP38.cpp */, + D53CCF962A7BAE8000CAD911 /* ICSharpCode.SharpZipLib_CodeGen.c */, + D53CCF972A7BAE8000CAD911 /* mscorlib21.cpp */, + D53CCF982A7BAE8000CAD911 /* Generics53.cpp */, + D53CCF992A7BAE8000CAD911 /* Generics47.cpp */, + D53CCF9A2A7BAE8000CAD911 /* UnityEngine.UIElementsModule.cpp */, + D53CCF9B2A7BAE8000CAD911 /* UnityEngine.UIElementsModule10.cpp */, + D53CCF9C2A7BAE8000CAD911 /* spine-unity.cpp */, + D53CCF9D2A7BAE8000CAD911 /* UnityEngine.UIElementsModule12.cpp */, + D53CCF9E2A7BAE8000CAD911 /* AmazingAssets.TerrainToMesh.cpp */, + D53CCF9F2A7BAE8000CAD911 /* UnityEngine.cpp */, + D53CCFA02A7BAE8000CAD911 /* Generics51.cpp */, + D53CCFA12A7BAE8000CAD911 /* Generics45.cpp */, + D53CCFA22A7BAE8000CAD911 /* spine-unity4.cpp */, + D53CCFA32A7BAE8000CAD911 /* UnityEngine.SharedInternalsModule_CodeGen.c */, + D53CCFA42A7BAE8000CAD911 /* UnityEngine.UnityWebRequestAssetBundleModule.cpp */, + D53CCFA52A7BAE8000CAD911 /* mscorlib_CodeGen.c */, + D53CCFA62A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule.cpp */, + D53CCFA72A7BAE8000CAD911 /* mscorlib23.cpp */, + D53CCFA82A7BAE8000CAD911 /* Il2CppMetadataRegistration.c */, + D53CCFA92A7BAE8000CAD911 /* BestHTTP12.cpp */, + D53CCFAA2A7BAE8000CAD911 /* UnityEngine.Physics2DModule.cpp */, + D53CCFAB2A7BAE8000CAD911 /* BestHTTP13.cpp */, + D53CCFAC2A7BAE8000CAD911 /* Assembly-CSharp40.cpp */, + D53CCFAD2A7BAE8000CAD911 /* mscorlib22.cpp */, + D53CCFAE2A7BAE8000CAD911 /* spine-unity5.cpp */, + D53CCFAF2A7BAE8000CAD911 /* Il2CppGenericMethodDefinitions.c */, + D53CCFB02A7BAE8000CAD911 /* Generics44.cpp */, + D53CCFB12A7BAE8000CAD911 /* Generics50.cpp */, + D53CCFB22A7BAE8000CAD911 /* Unity.Timeline1.cpp */, + D53CCFB32A7BAE8000CAD911 /* Generics54.cpp */, + D53CCFB42A7BAE8000CAD911 /* Generics40.cpp */, + D53CCFB52A7BAE8000CAD911 /* UnityEngine.AIModule_CodeGen.c */, + D53CCFB62A7BAE8000CAD911 /* spine-unity1.cpp */, + D53CCFB72A7BAE8000CAD911 /* UnityEngine.SharedInternalsModule.cpp */, + D53CCFB82A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule2.cpp */, + D53CCFB92A7BAE8000CAD911 /* BestHTTP17.cpp */, + D53CCFBA2A7BAE8000CAD911 /* UnityEngine.UIModule_CodeGen.c */, + D53CCFBB2A7BAE8000CAD911 /* System.cpp */, + D53CCFBC2A7BAE8000CAD911 /* BestHTTP16.cpp */, + D53CCFBD2A7BAE8000CAD911 /* Mono.Security.cpp */, + D53CCFBE2A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule3.cpp */, + D53CCFBF2A7BAE8000CAD911 /* System.Configuration_CodeGen.c */, + D53CCFC02A7BAE8000CAD911 /* Generics41.cpp */, + D53CCFC12A7BAE8000CAD911 /* Generics55.cpp */, + D53CCFC22A7BAE8000CAD911 /* Generics43.cpp */, + D53CCFC32A7BAE8000CAD911 /* Assembly-CSharp-firstpass.cpp */, + D53CCFC42A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule_CodeGen.c */, + D53CCFC52A7BAE8000CAD911 /* Generics57.cpp */, + D53CCFC62A7BAE8000CAD911 /* UnityEngine.VRModule.cpp */, + D53CCFC72A7BAE8000CAD911 /* spine-unity2.cpp */, + D53CCFC82A7BAE8000CAD911 /* mscorlib19.cpp */, + D53CCFC92A7BAE8000CAD911 /* UnityEngine.TextCoreTextEngineModule1.cpp */, + D53CCFCA2A7BAE8000CAD911 /* UnityEngine.SubsystemsModule_CodeGen.c */, + D53CCFCB2A7BAE8000CAD911 /* UnityEngine.GridModule.cpp */, + D53CCFCC2A7BAE8000CAD911 /* Il2CppMetadataUsage.c */, + D53CCFCD2A7BAE8000CAD911 /* BestHTTP14.cpp */, + D53CCFCE2A7BAE8000CAD911 /* BestHTTP28.cpp */, + D53CCFCF2A7BAE8000CAD911 /* UnityEngine.TerrainModule.cpp */, + D53CCFD02A7BAE8000CAD911 /* Debugger.cpp */, + D53CCFD12A7BAE8000CAD911 /* System.Runtime.CompilerServices.Unsafe.cpp */, + D53CCFD22A7BAE8000CAD911 /* BestHTTP29.cpp */, + D53CCFD32A7BAE8000CAD911 /* Il2CppReversePInvokeWrapperTable.cpp */, + D53CCFD42A7BAE8000CAD911 /* BestHTTP15.cpp */, + D53CCFD52A7BAE8000CAD911 /* mscorlib24.cpp */, + D53CCFD62A7BAE8000CAD911 /* mscorlib18.cpp */, + D53CCFD72A7BAE8000CAD911 /* Whinarn.UnityMeshSimplifier.Runtime.cpp */, + D53CCFD82A7BAE8000CAD911 /* spine-unity3.cpp */, + D53CCFD92A7BAE8000CAD911 /* UnityEngine.UIElementsNativeModule.cpp */, + D53CCFDA2A7BAE8000CAD911 /* Generics56.cpp */, + D53CCFDB2A7BAE8000CAD911 /* Generics42.cpp */, + D53CCFDC2A7BAE8000CAD911 /* Generics19.cpp */, + D53CCFDD2A7BAE8000CAD911 /* Il2CppInvokerTable.cpp */, + D53CCFDE2A7BAE8000CAD911 /* UnityEngine.UI1.cpp */, + D53CCFDF2A7BAE8000CAD911 /* Generics25.cpp */, + D53CCFE02A7BAE8000CAD911 /* Generics31.cpp */, + D53CCFE12A7BAE8000CAD911 /* Mono.Security_CodeGen.c */, + D53CCFE22A7BAE8000CAD911 /* UnityEngine.TerrainModule_CodeGen.c */, + D53CCFE32A7BAE8000CAD911 /* Assembly-CSharp1.cpp */, + D53CCFE42A7BAE8000CAD911 /* Assembly-CSharp35.cpp */, + D53CCFE52A7BAE8000CAD911 /* Assembly-CSharp21.cpp */, + D53CCFE62A7BAE8000CAD911 /* UnityEngine.AssetBundleModule_CodeGen.c */, + D53CCFE72A7BAE8000CAD911 /* UnityEngine.UIElementsModule3.cpp */, + D53CCFE82A7BAE8000CAD911 /* Google.Protobuf3.cpp */, + D53CCFE92A7BAE8000CAD911 /* Google.Protobuf2.cpp */, + D53CCFEA2A7BAE8000CAD911 /* UnityEngine.SubsystemsModule.cpp */, + D53CCFEB2A7BAE8000CAD911 /* UnityEngine.UIElementsModule2.cpp */, + D53CCFEC2A7BAE8000CAD911 /* UnityEngine.CoreModule.cpp */, + D53CCFED2A7BAE8000CAD911 /* Il2CppGenericClassTable.c */, + D53CCFEE2A7BAE8000CAD911 /* UnityEngine.GridModule_CodeGen.c */, + D53CCFEF2A7BAE8000CAD911 /* System.Xml.cpp */, + D53CCFF02A7BAE8000CAD911 /* UnityEngine.CoreModule1.cpp */, + D53CCFF12A7BAE8000CAD911 /* Assembly-CSharp20.cpp */, + D53CCFF22A7BAE8000CAD911 /* Assembly-CSharp34.cpp */, + D53CCFF32A7BAE8000CAD911 /* System.Numerics.cpp */, + D53CCFF42A7BAE8000CAD911 /* Il2CppGenericInstDefinitions.c */, + D53CCFF52A7BAE8000CAD911 /* mscorlib1.cpp */, + D53CCFF62A7BAE8000CAD911 /* Generics30.cpp */, + D53CCFF72A7BAE8000CAD911 /* Generics24.cpp */, + D53CCFF82A7BAE8000CAD911 /* Generics18.cpp */, + D53CCFF92A7BAE8000CAD911 /* Google.Protobuf_CodeGen.c */, + D53CCFFA2A7BAE8000CAD911 /* UnityEngine.PhysicsModule.cpp */, + D53CCFFB2A7BAE8000CAD911 /* Il2CppCCalculateTypeValues1.cpp */, + D53CCFFC2A7BAE8000CAD911 /* UnityEngine.TextCoreFontEngineModule.cpp */, + D53CCFFD2A7BAE8000CAD911 /* UnityEngine.UI2.cpp */, + D53CCFFE2A7BAE8000CAD911 /* Generics32.cpp */, + D53CCFFF2A7BAE8000CAD911 /* Generics26.cpp */, + D53CD0002A7BAE8000CAD911 /* mscorlib3.cpp */, + D53CD0012A7BAE8000CAD911 /* UnityEngine.GameCenterModule_CodeGen.c */, + D53CD0022A7BAE8000CAD911 /* Assembly-CSharp2.cpp */, + D53CD0032A7BAE8000CAD911 /* Assembly-CSharp22.cpp */, + D53CD0042A7BAE8000CAD911 /* Assembly-CSharp36.cpp */, + D53CD0052A7BAE8000CAD911 /* UnityEngine.CoreModule3.cpp */, + D53CD0062A7BAE8000CAD911 /* UnityEngine.TilemapModule.cpp */, + D53CD0072A7BAE8000CAD911 /* UnityEngine.ParticleSystemModule.cpp */, + D53CD0082A7BAE8000CAD911 /* Google.Protobuf1.cpp */, + D53CD0092A7BAE8000CAD911 /* UnityEngine.UIElementsModule1.cpp */, + D53CD00A2A7BAE8000CAD911 /* UnityEngine.UnityAnalyticsModule_CodeGen.c */, + D53CD00B2A7BAE8000CAD911 /* Il2CppCCFieldValuesTable.cpp */, + D53CD00C2A7BAE8000CAD911 /* UnityEngine.ImageConversionModule.cpp */, + D53CD00D2A7BAE8000CAD911 /* UnityEngine.CoreModule2.cpp */, + D53CD00E2A7BAE8000CAD911 /* Assembly-CSharp37.cpp */, + D53CD00F2A7BAE8000CAD911 /* Assembly-CSharp23.cpp */, + D53CD0102A7BAE8000CAD911 /* Assembly-CSharp3.cpp */, + D53CD0112A7BAE8000CAD911 /* mscorlib2.cpp */, + D53CD0122A7BAE8000CAD911 /* System.Core_CodeGen.c */, + D53CD0132A7BAE8000CAD911 /* Generics27.cpp */, + D53CD0142A7BAE8000CAD911 /* Generics33.cpp */, + D53CD0152A7BAE8000CAD911 /* UnityEngine.UI3.cpp */, + D53CD0162A7BAE8000CAD911 /* Unity.Timeline.cpp */, + D53CD0172A7BAE8000CAD911 /* GenericMethods.cpp */, + D53CD0182A7BAE8000CAD911 /* Generics37.cpp */, + D53CD0192A7BAE8000CAD911 /* Generics23.cpp */, + D53CD01A2A7BAE8000CAD911 /* UnityEngine.TilemapModule_CodeGen.c */, + D53CD01B2A7BAE8000CAD911 /* Debugger_CodeGen.c */, + D53CD01C2A7BAE8000CAD911 /* mscorlib6.cpp */, + D53CD01D2A7BAE8000CAD911 /* GenericMethods8.cpp */, + D53CD01E2A7BAE8000CAD911 /* UnresolvedVirtualCallStubs.cpp */, + D53CD01F2A7BAE8000CAD911 /* Assembly-CSharp27.cpp */, + D53CD0202A7BAE8000CAD911 /* UnityEngine.VideoModule.cpp */, + D53CD0212A7BAE8000CAD911 /* Assembly-CSharp33.cpp */, + D53CD0222A7BAE8000CAD911 /* Assembly-CSharp7.cpp */, + D53CD0232A7BAE8000CAD911 /* System9.cpp */, + D53CD0242A7BAE8000CAD911 /* UnityEngine.UIElementsModule5.cpp */, + D53CD0252A7BAE8100CAD911 /* UnityEngine.UIElementsModule4.cpp */, + D53CD0262A7BAE8100CAD911 /* Google.Protobuf4.cpp */, + D53CD0272A7BAE8100CAD911 /* UnityEngine.IMGUIModule.cpp */, + D53CD0282A7BAE8100CAD911 /* System.Core.cpp */, + D53CD0292A7BAE8100CAD911 /* System8.cpp */, + D53CD02A2A7BAE8100CAD911 /* Assembly-CSharp6.cpp */, + D53CD02B2A7BAE8100CAD911 /* Assembly-CSharp32.cpp */, + D53CD02C2A7BAE8100CAD911 /* Assembly-CSharp26.cpp */, + D53CD02D2A7BAE8100CAD911 /* UnityEngine.InputLegacyModule_CodeGen.c */, + D53CD02E2A7BAE8100CAD911 /* GenericMethods9.cpp */, + D53CD02F2A7BAE8100CAD911 /* mscorlib7.cpp */, + D53CD0302A7BAE8100CAD911 /* Generics22.cpp */, + D53CD0312A7BAE8100CAD911 /* Generics36.cpp */, + D53CD0322A7BAE8100CAD911 /* UnityEngine.AIModule.cpp */, + D53CD0332A7BAE8100CAD911 /* Unity.Timeline_CodeGen.c */, + D53CD0342A7BAE8100CAD911 /* UnityEngine.ParticleSystemModule_CodeGen.c */, + D53CD0352A7BAE8100CAD911 /* Generics20.cpp */, + D53CD0362A7BAE8100CAD911 /* Generics34.cpp */, + D53CD0372A7BAE8100CAD911 /* mscorlib5.cpp */, + D53CD0382A7BAE8100CAD911 /* UnityEngine.AndroidJNIModule.cpp */, + D53CD0392A7BAE8100CAD911 /* Assembly-CSharp_CodeGen.c */, + D53CD03A2A7BAE8100CAD911 /* Assembly-CSharp30.cpp */, + D53CD03B2A7BAE8100CAD911 /* Assembly-CSharp24.cpp */, + D53CD03C2A7BAE8100CAD911 /* Whinarn.UnityMeshSimplifier.Runtime_CodeGen.c */, + D53CD03D2A7BAE8100CAD911 /* Assembly-CSharp4.cpp */, + D53CD03E2A7BAE8100CAD911 /* Assembly-CSharp18.cpp */, + D53CD03F2A7BAE8100CAD911 /* UnityEngine.UnityWebRequestAudioModule.cpp */, + D53CD0402A7BAE8100CAD911 /* System.Numerics_CodeGen.c */, + D53CD0412A7BAE8100CAD911 /* Generics8.cpp */, + D53CD0422A7BAE8100CAD911 /* UnityEngine.AudioModule_CodeGen.c */, + D53CD0432A7BAE8100CAD911 /* System.Xml9.cpp */, + D53CD0442A7BAE8100CAD911 /* UnityEngine.UIElementsModule6.cpp */, + D53CD0452A7BAE8100CAD911 /* UnityEngine.UIElementsModule7.cpp */, + D53CD0462A7BAE8100CAD911 /* System.Xml8.cpp */, + D53CD0472A7BAE8100CAD911 /* Generics9.cpp */, + D53CD0482A7BAE8100CAD911 /* Assembly-CSharp19.cpp */, + D53CD0492A7BAE8100CAD911 /* Assembly-CSharp5.cpp */, + D53CD04A2A7BAE8100CAD911 /* Assembly-CSharp25.cpp */, + D53CD04B2A7BAE8100CAD911 /* Unity.Notifications.iOS.cpp */, + D53CD04C2A7BAE8100CAD911 /* Assembly-CSharp31.cpp */, + D53CD04D2A7BAE8100CAD911 /* Generics.cpp */, + D53CD04E2A7BAE8100CAD911 /* UnityEngine.UnityWebRequestModule.cpp */, + D53CD04F2A7BAE8100CAD911 /* mscorlib4.cpp */, + D53CD0502A7BAE8100CAD911 /* Generics35.cpp */, + D53CD0512A7BAE8100CAD911 /* Generics21.cpp */, ); name = Native; - path = "../../../game/wallet-test/target/ios/Classes/Native"; + path = "../../unity-build/Classes/Native"; sourceTree = ""; }; D59AB8482A68FC2900433200 /* purchase */ = { @@ -3634,7 +4483,7 @@ A11B44AE88B0F8D848806B46 /* LaunchScreen-iPhoneLandscape.png in Resources */, 3EB845A79D9D222154D9CF54 /* LaunchScreen-iPad.storyboard in Resources */, D507C92A2994A0A800CF3953 /* ScanResultViewController.xib in Resources */, - D5C03B702A49A808002E758D /* Data in Resources */, + D53CCECA2A7BAE6600CAD911 /* Data in Resources */, D507D5F12994C62A00CF3953 /* libil2cpp.icalls in Resources */, D507C9372994A0A800CF3953 /* SimpleQRViewController.xib in Resources */, D507C9192994A0A800CF3953 /* QrCodeViewController.xib in Resources */, @@ -3731,276 +4580,515 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D55759D62A5FAC16009369FC /* Il2CppTypeDefinitions.c in Sources */, - D55759CE2A5FAC16009369FC /* mscorlib10.cpp in Sources */, - D55759F02A5FAC16009369FC /* Il2CppReversePInvokeWrapperTable.cpp in Sources */, D507D5DF2994C62A00CF3953 /* UnityAdsInitializationListener.mm in Sources */, + D53CD0C22A7BAE8100CAD911 /* UnityEngine.AudioModule.cpp in Sources */, + D53CD1302A7BAE8100CAD911 /* UnityEngine.Physics2DModule.cpp in Sources */, + D53CD1C82A7BAE8200CAD911 /* UnityEngine.AudioModule_CodeGen.c in Sources */, + D53CD1112A7BAE8100CAD911 /* mscorlib20.cpp in Sources */, + D53CD0782A7BAE8100CAD911 /* UnityEngine.UIElementsModule9.cpp in Sources */, + D53CD0EA2A7BAE8100CAD911 /* Mono.Security1.cpp in Sources */, + D53CD0B92A7BAE8100CAD911 /* UnityEngine.UIElementsModule_CodeGen.c in Sources */, + D53CD0722A7BAE8100CAD911 /* GenericMethods4.cpp in Sources */, + D53CD1392A7BAE8100CAD911 /* Generics54.cpp in Sources */, D507C9202994A0A800CF3953 /* ToastManager.m in Sources */, + D53CD10B2A7BAE8100CAD911 /* UnityEngine.UIElementsModule11.cpp in Sources */, + D53CD1102A7BAE8100CAD911 /* Il2CppTypeDefinitions.c in Sources */, + D53CD1602A7BAE8100CAD911 /* Generics56.cpp in Sources */, + D53CD1AC2A7BAE8100CAD911 /* Google.Protobuf4.cpp in Sources */, + D53CD0522A7BAE8100CAD911 /* Generics38.cpp in Sources */, + D53CD1542A7BAE8100CAD911 /* BestHTTP28.cpp in Sources */, + D53CD13C2A7BAE8100CAD911 /* spine-unity1.cpp in Sources */, + D53CD1592A7BAE8100CAD911 /* Il2CppReversePInvokeWrapperTable.cpp in Sources */, + D53CD16B2A7BAE8100CAD911 /* Assembly-CSharp21.cpp in Sources */, D59AB8522A68FEB700433200 /* Section.m in Sources */, - D55759E42A5FAC16009369FC /* Il2CppGenericMethodDefinitions.c in Sources */, + D53CD1492A7BAE8100CAD911 /* Assembly-CSharp-firstpass.cpp in Sources */, D507D2462994C61700CF3953 /* UnityReplayKit.mm in Sources */, D507D2562994C61700CF3953 /* OrientationSupport.mm in Sources */, - D55759BC2A5FAC16009369FC /* mscorlib15.cpp in Sources */, + D53CD12B2A7BAE8100CAD911 /* mscorlib_CodeGen.c in Sources */, + D53CD12A2A7BAE8100CAD911 /* UnityEngine.UnityWebRequestAssetBundleModule.cpp in Sources */, + D53CD0E02A7BAE8100CAD911 /* mscorlib17.cpp in Sources */, + D53CD11E2A7BAE8100CAD911 /* Generics53.cpp in Sources */, + D53CD11D2A7BAE8100CAD911 /* mscorlib21.cpp in Sources */, + D53CD0CD2A7BAE8100CAD911 /* UnityEngine.AnimationModule.cpp in Sources */, + D53CD08C2A7BAE8100CAD911 /* BestHTTP41.cpp in Sources */, D507D5E32994C62A00CF3953 /* UnityBannerUnityWrapper.m in Sources */, - D55759FA2A5FAC16009369FC /* Il2CppGenericClassTable.c in Sources */, - D55759E82A5FAC16009369FC /* System.cpp in Sources */, D507D24F2994C61700CF3953 /* CameraCapture.mm in Sources */, - D5575A1A2A5FAC16009369FC /* mscorlib7.cpp in Sources */, + D53CD1A22A7BAE8100CAD911 /* mscorlib6.cpp in Sources */, + D53CD1142A7BAE8100CAD911 /* BestHTTP39.cpp in Sources */, + D53CD0582A7BAE8100CAD911 /* Assembly-CSharp28.cpp in Sources */, + D53CD0C82A7BAE8100CAD911 /* UnityEngine.UnityWebRequestAssetBundleModule_CodeGen.c in Sources */, D507D3082994C61700CF3953 /* iPhone_Sensors.mm in Sources */, - D55759F42A5FAC16009369FC /* UnityEngine.UI1.cpp in Sources */, - D55759B22A5FAC16009369FC /* System3.cpp in Sources */, - D5575A0F2A5FAC16009369FC /* UnityEngine.UI3.cpp in Sources */, D507D25C2994C61700CF3953 /* UnityView+tvOS.mm in Sources */, + D53CD1532A7BAE8100CAD911 /* BestHTTP14.cpp in Sources */, + D53CD0602A7BAE8100CAD911 /* System.Xml5.cpp in Sources */, + D53CD18D2A7BAE8100CAD911 /* UnityEngine.ParticleSystemModule.cpp in Sources */, + D53CD0A02A7BAE8100CAD911 /* GenericMethods2.cpp in Sources */, D507C91A2994A0A800CF3953 /* QrCodeViewController.m in Sources */, + D53CD11C2A7BAE8100CAD911 /* ICSharpCode.SharpZipLib_CodeGen.c in Sources */, + D53CD1922A7BAE8100CAD911 /* UnityEngine.ImageConversionModule.cpp in Sources */, D507D5E72994C62A00CF3953 /* UnityMonetizationNativePromoAdapterWrapper.m in Sources */, - D55759982A5FAC16009369FC /* GenericMethods4.cpp in Sources */, - D55759C42A5FAC16009369FC /* UnityEngine.AnimationModule_CodeGen.c in Sources */, - D5575A182A5FAC16009369FC /* System.Core.cpp in Sources */, + D53CD1D02A7BAE8200CAD911 /* Assembly-CSharp25.cpp in Sources */, D507D25A2994C61700CF3953 /* UnityViewControllerBase+iOS.mm in Sources */, + D53CD13F2A7BAE8100CAD911 /* BestHTTP17.cpp in Sources */, + D53CD14F2A7BAE8100CAD911 /* UnityEngine.TextCoreTextEngineModule1.cpp in Sources */, + D53CD1482A7BAE8100CAD911 /* Generics43.cpp in Sources */, + D53CD1352A7BAE8100CAD911 /* Il2CppGenericMethodDefinitions.c in Sources */, + D53CD1CD2A7BAE8200CAD911 /* Generics9.cpp in Sources */, D507D2602994C61700CF3953 /* UnityAppController+ViewHandling.mm in Sources */, - D5575A0E2A5FAC16009369FC /* Generics27.cpp in Sources */, - D55759E32A5FAC16009369FC /* UnityEngine.Physics2DModule.cpp in Sources */, - D55759F92A5FAC16009369FC /* UnityEngine.CoreModule.cpp in Sources */, + D53CD0B02A7BAE8100CAD911 /* AmazingAssets.TerrainToMesh2.cpp in Sources */, D507C9172994A0A800CF3953 /* WalletEvent.cpp in Sources */, - D55759F62A5FAC16009369FC /* Mono.Security_CodeGen.c in Sources */, D507D5E12994C62A00CF3953 /* UnityAdsPurchasingWrapper.m in Sources */, + D53CD13B2A7BAE8100CAD911 /* UnityEngine.AIModule_CodeGen.c in Sources */, + D53CD0F52A7BAE8100CAD911 /* Generics60.cpp in Sources */, + D53CD18F2A7BAE8100CAD911 /* UnityEngine.UIElementsModule1.cpp in Sources */, + D53CD15A2A7BAE8100CAD911 /* BestHTTP15.cpp in Sources */, + D53CD1752A7BAE8100CAD911 /* System.Xml.cpp in Sources */, + D53CD0C12A7BAE8100CAD911 /* Il2CppCCalculateFieldValues.cpp in Sources */, + D53CD08E2A7BAE8100CAD911 /* UnityEngine.TextCoreFontEngineModule_CodeGen.c in Sources */, + D53CD1A92A7BAE8100CAD911 /* System9.cpp in Sources */, D507D24D2994C61700CF3953 /* FullScreenVideoPlayer.mm in Sources */, - D5575A042A5FAC16009369FC /* UnityEngine.UI2.cpp in Sources */, - D55759A72A5FAC16009369FC /* UnityEngine.PhysicsModule_CodeGen.c in Sources */, D507C9322994A0A800CF3953 /* SimpleQRViewController.m in Sources */, + D53CD0FF2A7BAE8100CAD911 /* ICSharpCode.SharpZipLib3.cpp in Sources */, + D53CD0992A7BAE8100CAD911 /* Assembly-CSharp.cpp in Sources */, + D53CD0982A7BAE8100CAD911 /* AmazingAssets.TerrainToMesh1.cpp in Sources */, + D53CD1CB2A7BAE8200CAD911 /* UnityEngine.UIElementsModule7.cpp in Sources */, + D53CD05C2A7BAE8100CAD911 /* Assembly-CSharp8.cpp in Sources */, + D53CD1272A7BAE8100CAD911 /* Generics45.cpp in Sources */, + D53CD0B52A7BAE8100CAD911 /* UnityEngine.UnityWebRequestAudioModule_CodeGen.c in Sources */, D507D2572994C61700CF3953 /* UnityView+Keyboard.mm in Sources */, - D55759A12A5FAC16009369FC /* Generics12.cpp in Sources */, - D55759C52A5FAC16009369FC /* UnityEngine.AnimationModule.cpp in Sources */, - D55759EA2A5FAC16009369FC /* UnityEngine.TextCoreTextEngineModule3.cpp in Sources */, - D5575A1E2A5FAC16009369FC /* UnityEngine.AndroidJNIModule.cpp in Sources */, D507D5E42994C62A00CF3953 /* UnityAdsUnityWrapper.m in Sources */, - D55759C02A5FAC16009369FC /* UnityEngine.AudioModule.cpp in Sources */, + D53CD0AF2A7BAE8100CAD911 /* Il2CppCCalculateFieldValues1.cpp in Sources */, + D53CD11A2A7BAE8100CAD911 /* BestHTTP10.cpp in Sources */, + D53CD1CE2A7BAE8200CAD911 /* Assembly-CSharp19.cpp in Sources */, D507D2522994C61700CF3953 /* CMVideoSampling.mm in Sources */, + D53CD0692A7BAE8100CAD911 /* GenericMethods13.cpp in Sources */, + D53CD05F2A7BAE8100CAD911 /* Generics4.cpp in Sources */, + D53CD17E2A7BAE8100CAD911 /* Generics18.cpp in Sources */, + D53CD0CB2A7BAE8100CAD911 /* UnityEngine.CoreModule_CodeGen.c in Sources */, D507C93A2994A0A800CF3953 /* QRCodeReaderViewController.m in Sources */, - D55759DF2A5FAC16009369FC /* UnityEngine.SharedInternalsModule_CodeGen.c in Sources */, - D55759A62A5FAC16009369FC /* UnityEngine.TextCoreFontEngineModule_CodeGen.c in Sources */, D507C9272994A0A800CF3953 /* LBXScanVideoZoomView.m in Sources */, + D53CD0912A7BAE8100CAD911 /* BestHTTP40.cpp in Sources */, D507D5EB2994C62A00CF3953 /* UnityAdsShowListener.mm in Sources */, + D53CD1BE2A7BAE8200CAD911 /* UnityEngine.AndroidJNIModule.cpp in Sources */, + D53CD1582A7BAE8100CAD911 /* BestHTTP29.cpp in Sources */, + D53CD16A2A7BAE8100CAD911 /* Assembly-CSharp35.cpp in Sources */, + D53CD1A02A7BAE8100CAD911 /* UnityEngine.TilemapModule_CodeGen.c in Sources */, + D53CD1BF2A7BAE8200CAD911 /* Assembly-CSharp_CodeGen.c in Sources */, + D53CD1092A7BAE8100CAD911 /* CString1.cpp in Sources */, + D53CD0C02A7BAE8100CAD911 /* System12.cpp in Sources */, + D53CD16E2A7BAE8100CAD911 /* Google.Protobuf3.cpp in Sources */, + D53CD16D2A7BAE8100CAD911 /* UnityEngine.UIElementsModule3.cpp in Sources */, + D53CD1562A7BAE8100CAD911 /* Debugger.cpp in Sources */, + D53CD1A42A7BAE8100CAD911 /* UnresolvedVirtualCallStubs.cpp in Sources */, D507C9332994A0A800CF3953 /* LBXPermissionSetting.m in Sources */, + D53CD0DB2A7BAE8100CAD911 /* BestHTTP2.cpp in Sources */, + D53CD0892A7BAE8100CAD911 /* Assembly-CSharp12.cpp in Sources */, + D53CD1652A7BAE8100CAD911 /* Generics25.cpp in Sources */, + D53CD1772A7BAE8100CAD911 /* Assembly-CSharp20.cpp in Sources */, D59AB8472A68FC2200433200 /* StoreObserver.m in Sources */, - D55759BD2A5FAC16009369FC /* UnityEngine.UIElementsModule_CodeGen.c in Sources */, D507D24E2994C61700CF3953 /* DisplayManager.mm in Sources */, + D53CD1152A7BAE8100CAD911 /* BestHTTP11.cpp in Sources */, + D53CD1832A7BAE8100CAD911 /* UnityEngine.UI2.cpp in Sources */, + D53CD0652A7BAE8100CAD911 /* Assembly-CSharp15.cpp in Sources */, + D53CD1572A7BAE8100CAD911 /* System.Runtime.CompilerServices.Unsafe.cpp in Sources */, + D53CD07D2A7BAE8100CAD911 /* Generics6.cpp in Sources */, + D53CD0712A7BAE8100CAD911 /* GenericMethods11.cpp in Sources */, + D53CD1972A7BAE8100CAD911 /* mscorlib2.cpp in Sources */, + D53CD1262A7BAE8100CAD911 /* Generics51.cpp in Sources */, + D53CD0BC2A7BAE8100CAD911 /* UnityEngine.DirectorModule_CodeGen.c in Sources */, + D53CC8A22A7BA28D00CAD911 /* UnityNotificationWrapper.m in Sources */, + D53CD1AB2A7BAE8100CAD911 /* UnityEngine.UIElementsModule4.cpp in Sources */, D507C9362994A0A800CF3953 /* LBXPermission.m in Sources */, - D55759E92A5FAC16009369FC /* Mono.Security.cpp in Sources */, - D55759AA2A5FAC16009369FC /* UnityEngine.AndroidJNIModule_CodeGen.c in Sources */, - D55759E02A5FAC16009369FC /* mscorlib_CodeGen.c in Sources */, - D55759A82A5FAC16009369FC /* System1.cpp in Sources */, - D5575A122A5FAC16009369FC /* UnityEngine.TilemapModule_CodeGen.c in Sources */, - D5575A022A5FAC16009369FC /* UnityEngine.PhysicsModule.cpp in Sources */, - D55759B42A5FAC16009369FC /* __Generated_CodeGen.c in Sources */, + D53CD0862A7BAE8100CAD911 /* GenericMethods14.cpp in Sources */, + D53CD1C22A7BAE8200CAD911 /* Whinarn.UnityMeshSimplifier.Runtime_CodeGen.c in Sources */, D507D5ED2994C62A00CF3953 /* VolumeIOSPlugin.mm in Sources */, - D557599B2A5FAC16009369FC /* UnityEngine.UIElementsModule9.cpp in Sources */, + D53CD0C92A7BAE8100CAD911 /* BestHTTP19.cpp in Sources */, D507D3032994C61700CF3953 /* UnityAppController+Rendering.mm in Sources */, - D55759BA2A5FAC16009369FC /* GenericMethods3.cpp in Sources */, + D53CD0AB2A7BAE8100CAD911 /* System2.cpp in Sources */, + D53CD0BA2A7BAE8100CAD911 /* BestHTTP18.cpp in Sources */, D507D2582994C61700CF3953 /* Keyboard.mm in Sources */, + D53CD0EE2A7BAE8100CAD911 /* UnityEngine.InputModule_CodeGen.c in Sources */, + D53CD0812A7BAE8100CAD911 /* GenericMethods10.cpp in Sources */, + D53CD1CC2A7BAE8200CAD911 /* System.Xml8.cpp in Sources */, + D53CD19C2A7BAE8100CAD911 /* Unity.Timeline.cpp in Sources */, + D53CC8932A7BA24A00CAD911 /* AFUnityUtils.mm in Sources */, + D53CD08F2A7BAE8100CAD911 /* UnityEngine.PhysicsModule_CodeGen.c in Sources */, + D53CD06F2A7BAE8100CAD911 /* Generics13.cpp in Sources */, + D53CD17A2A7BAE8100CAD911 /* Il2CppGenericInstDefinitions.c in Sources */, + D53CD0CE2A7BAE8100CAD911 /* UnityEngine.VideoModule_CodeGen.c in Sources */, + D53CD1D52A7BAE8200CAD911 /* mscorlib4.cpp in Sources */, + D53CD19E2A7BAE8100CAD911 /* Generics37.cpp in Sources */, + D53CD1042A7BAE8100CAD911 /* UnityEngine.VFXModule.cpp in Sources */, + D53CD1682A7BAE8100CAD911 /* UnityEngine.TerrainModule_CodeGen.c in Sources */, D507D25B2994C61700CF3953 /* UnityViewControllerBase.mm in Sources */, + D53CD1B52A7BAE8100CAD911 /* mscorlib7.cpp in Sources */, D507D24C2994C61700CF3953 /* DeviceSettings.mm in Sources */, + D53CD17C2A7BAE8100CAD911 /* Generics30.cpp in Sources */, + D53CD1292A7BAE8100CAD911 /* UnityEngine.SharedInternalsModule_CodeGen.c in Sources */, D507C92F2994A0A800CF3953 /* UIImageView+CornerRadius.m in Sources */, - D55759E52A5FAC16009369FC /* UnityEngine.SharedInternalsModule.cpp in Sources */, - D5575A172A5FAC16009369FC /* UnityEngine.IMGUIModule.cpp in Sources */, - D55759DC2A5FAC16009369FC /* UnityEngine.UIElementsModule10.cpp in Sources */, + D53CD0F02A7BAE8100CAD911 /* BestHTTP23.cpp in Sources */, + D53CD0A42A7BAE8100CAD911 /* Generics1.cpp in Sources */, + D53CD0932A7BAE8100CAD911 /* System1.cpp in Sources */, + D53CD1132A7BAE8100CAD911 /* System_CodeGen.c in Sources */, + D53CD0FA2A7BAE8100CAD911 /* BestHTTP21.cpp in Sources */, + D53CD07E2A7BAE8100CAD911 /* Assembly-CSharp16.cpp in Sources */, D507D24A2994C61700CF3953 /* InternalProfiler.cpp in Sources */, + D53CD1C72A7BAE8200CAD911 /* Generics8.cpp in Sources */, + D53CD0F92A7BAE8100CAD911 /* BestHTTP35.cpp in Sources */, + D53CD1C62A7BAE8200CAD911 /* System.Numerics_CodeGen.c in Sources */, + D53CD19B2A7BAE8100CAD911 /* UnityEngine.UI3.cpp in Sources */, + D53CD0A82A7BAE8100CAD911 /* System.Xml1.cpp in Sources */, + D53CD1AA2A7BAE8100CAD911 /* UnityEngine.UIElementsModule5.cpp in Sources */, D50CEEEB29C043ED002CC932 /* WebPageViewController.m in Sources */, + D53CD1212A7BAE8100CAD911 /* UnityEngine.UIElementsModule10.cpp in Sources */, + D53CD0902A7BAE8100CAD911 /* System.Xml2.cpp in Sources */, + D53CD0AC2A7BAE8100CAD911 /* Assembly-CSharp38.cpp in Sources */, + D53CD0E22A7BAE8100CAD911 /* Assembly-CSharp-firstpass_CodeGen.c in Sources */, + D53CD0D32A7BAE8100CAD911 /* mscorlib16.cpp in Sources */, + D53CD1502A7BAE8100CAD911 /* UnityEngine.SubsystemsModule_CodeGen.c in Sources */, + D53CD1B72A7BAE8100CAD911 /* Generics36.cpp in Sources */, + D53CD1D62A7BAE8200CAD911 /* Generics35.cpp in Sources */, + D53CD0DD2A7BAE8100CAD911 /* UnityEngine.AssetBundleModule.cpp in Sources */, + D53CD1422A7BAE8100CAD911 /* BestHTTP16.cpp in Sources */, + D53CD1B12A7BAE8100CAD911 /* Assembly-CSharp32.cpp in Sources */, + D53CD1812A7BAE8100CAD911 /* Il2CppCCalculateTypeValues1.cpp in Sources */, D507D2542994C61700CF3953 /* NoGraphicsHelper.mm in Sources */, - D55759AC2A5FAC16009369FC /* Generics17.cpp in Sources */, - D55759AE2A5FAC16009369FC /* Generics15.cpp in Sources */, - D55759BB2A5FAC16009369FC /* Generics14.cpp in Sources */, D507C9262994A0A800CF3953 /* LBXScanViewStyle.m in Sources */, + D53CD0D12A7BAE8100CAD911 /* spine-unity_CodeGen.c in Sources */, + D53CD1A32A7BAE8100CAD911 /* GenericMethods8.cpp in Sources */, + D53CD1062A7BAE8100CAD911 /* BestHTTP34.cpp in Sources */, + D53CD0E52A7BAE8100CAD911 /* UnityEngine.XRModule_CodeGen.c in Sources */, + D53CD1012A7BAE8100CAD911 /* BestHTTP4.cpp in Sources */, + D53CD1D32A7BAE8200CAD911 /* Generics.cpp in Sources */, + D53CD0CA2A7BAE8100CAD911 /* mscorlib14.cpp in Sources */, + D53CD15F2A7BAE8100CAD911 /* UnityEngine.UIElementsNativeModule.cpp in Sources */, D507C9302994A0A800CF3953 /* QQScanNativeViewController.m in Sources */, + D53CD1202A7BAE8100CAD911 /* UnityEngine.UIElementsModule.cpp in Sources */, + D53CD0DF2A7BAE8100CAD911 /* CString_CodeGen.c in Sources */, + D53CD1AF2A7BAE8100CAD911 /* System8.cpp in Sources */, + D53CD1B02A7BAE8100CAD911 /* Assembly-CSharp6.cpp in Sources */, + D53CD0F12A7BAE8100CAD911 /* mscorlib.cpp in Sources */, D507D5E82994C62A00CF3953 /* UnityJsonAdditions.m in Sources */, + D53CD0B22A7BAE8100CAD911 /* GenericMethods3.cpp in Sources */, + D53CD1862A7BAE8100CAD911 /* mscorlib3.cpp in Sources */, + D53CD1522A7BAE8100CAD911 /* Il2CppMetadataUsage.c in Sources */, + D53CD0D52A7BAE8100CAD911 /* BestHTTP33.cpp in Sources */, + D53CD1122A7BAE8100CAD911 /* UnityEngine.UI.cpp in Sources */, + D53CD0882A7BAE8100CAD911 /* UnityEngine.UIElementsNativeModule_CodeGen.c in Sources */, D507C91B2994A0A800CF3953 /* UIViewController+QR.mm in Sources */, + D53CD06A2A7BAE8100CAD911 /* mscorlib8.cpp in Sources */, + D53CD05B2A7BAE8100CAD911 /* Assembly-CSharp14.cpp in Sources */, + D53CD0F72A7BAE8100CAD911 /* mscorlib10.cpp in Sources */, + D53CD0A72A7BAE8100CAD911 /* System.Configuration.cpp in Sources */, D507D5E62994C62A00CF3953 /* UnityMonetizationUnityWrapper.m in Sources */, + D53CD1BD2A7BAE8200CAD911 /* mscorlib5.cpp in Sources */, D507C93E2994A0A800CF3953 /* UIViewController+Wallet.mm in Sources */, - D5575A132A5FAC16009369FC /* mscorlib6.cpp in Sources */, - D55759B82A5FAC16009369FC /* Il2CppCCalculateFieldValues1.cpp in Sources */, - D55759D82A5FAC16009369FC /* System_CodeGen.c in Sources */, - D5575A192A5FAC16009369FC /* UnityEngine.InputLegacyModule_CodeGen.c in Sources */, + D53CD0532A7BAE8100CAD911 /* Il2CppGenericAdjustorThunkTable.c in Sources */, + D53CD1882A7BAE8100CAD911 /* Assembly-CSharp2.cpp in Sources */, + D53CD19D2A7BAE8100CAD911 /* GenericMethods.cpp in Sources */, + D53CD10D2A7BAE8100CAD911 /* UnityEngine.ImageConversionModule_CodeGen.c in Sources */, + D53CD0A12A7BAE8100CAD911 /* Assembly-CSharp11.cpp in Sources */, D507C93C2994A0A800CF3953 /* QRPhotoAlbumButton.m in Sources */, - D55759902A5FAC16009369FC /* Generics5.cpp in Sources */, + D53CD0E42A7BAE8100CAD911 /* UnityEngine.GameCenterModule.cpp in Sources */, + D53CD1612A7BAE8100CAD911 /* Generics42.cpp in Sources */, D59AB84F2A68FE8E00433200 /* StoreManager.m in Sources */, - D55759D12A5FAC16009369FC /* UnityEngine.InputLegacyModule.cpp in Sources */, + D53CD18B2A7BAE8100CAD911 /* UnityEngine.CoreModule3.cpp in Sources */, + D53CD1AD2A7BAE8100CAD911 /* UnityEngine.IMGUIModule.cpp in Sources */, + D53CD0DA2A7BAE8100CAD911 /* System11.cpp in Sources */, + D53CD1712A7BAE8100CAD911 /* UnityEngine.UIElementsModule2.cpp in Sources */, + D53CD0D62A7BAE8100CAD911 /* ICSharpCode.SharpZipLib4.cpp in Sources */, + D53CD0632A7BAE8100CAD911 /* System7.cpp in Sources */, D59AB85E2A6A500900433200 /* SKProduct+SKProductAdditions.m in Sources */, + D53CD08B2A7BAE8100CAD911 /* Generics2.cpp in Sources */, + D53CD12D2A7BAE8100CAD911 /* mscorlib23.cpp in Sources */, + D53CD11F2A7BAE8100CAD911 /* Generics47.cpp in Sources */, D507C9412994A0A800CF3953 /* UIView+Toast.m in Sources */, - D55759E12A5FAC16009369FC /* UnityEngine.TextCoreTextEngineModule.cpp in Sources */, + D53CD1032A7BAE8100CAD911 /* BestHTTP20.cpp in Sources */, + D53CD0F42A7BAE8100CAD911 /* Generics48.cpp in Sources */, + D53CD1A12A7BAE8100CAD911 /* Debugger_CodeGen.c in Sources */, D507D5E92994C62A00CF3953 /* UnityAdsUtilities.m in Sources */, + D53CD1C02A7BAE8200CAD911 /* Assembly-CSharp30.cpp in Sources */, + D53CD1A62A7BAE8100CAD911 /* UnityEngine.VideoModule.cpp in Sources */, D507D2482994C61700CF3953 /* OnDemandResources.mm in Sources */, + D53CD0CC2A7BAE8100CAD911 /* UnityEngine.AnimationModule_CodeGen.c in Sources */, + D53CD0752A7BAE8100CAD911 /* Generics7.cpp in Sources */, + D53CD06C2A7BAE8100CAD911 /* Generics39.cpp in Sources */, + D53CD0FC2A7BAE8100CAD911 /* UnityClassRegistration.cpp in Sources */, + D53CD0D22A7BAE8100CAD911 /* UnityEngine.UnityWebRequestWWWModule_CodeGen.c in Sources */, + D53CD10A2A7BAE8100CAD911 /* UnityEngine.SpriteShapeModule_CodeGen.c in Sources */, + D53CD09D2A7BAE8100CAD911 /* UnityEngine.SpriteShapeModule.cpp in Sources */, + D53CD05D2A7BAE8100CAD911 /* UnityEngine.VRModule_CodeGen.c in Sources */, + D53CD07A2A7BAE8100CAD911 /* UnityICallRegistration.cpp in Sources */, D507D5DD2994C62900CF3953 /* RegisterFeatures.cpp in Sources */, + D53CD0AE2A7BAE8100CAD911 /* Assembly-CSharp10.cpp in Sources */, + D53CD0A22A7BAE8100CAD911 /* Assembly-CSharp39.cpp in Sources */, + D53CD0822A7BAE8100CAD911 /* UnityEngine_CodeGen.c in Sources */, + D53CD0DE2A7BAE8100CAD911 /* BestHTTP26.cpp in Sources */, D507C9182994A0A800CF3953 /* AppleSignIn.m in Sources */, - D55759D02A5FAC16009369FC /* UnityClassRegistration.cpp in Sources */, - D55759E72A5FAC16009369FC /* UnityEngine.UIModule_CodeGen.c in Sources */, - D5575A1C2A5FAC16009369FC /* Generics20.cpp in Sources */, - D5575A1B2A5FAC16009369FC /* Generics22.cpp in Sources */, + D53CD0672A7BAE8100CAD911 /* System.Xml_CodeGen.c in Sources */, + D53CD1D12A7BAE8200CAD911 /* Unity.Notifications.iOS.cpp in Sources */, + D53CD0D72A7BAE8100CAD911 /* BestHTTP3.cpp in Sources */, + D53CD1962A7BAE8100CAD911 /* Assembly-CSharp3.cpp in Sources */, + D53CD1432A7BAE8100CAD911 /* Mono.Security.cpp in Sources */, + D53CD19A2A7BAE8100CAD911 /* Generics33.cpp in Sources */, + D53CD0972A7BAE8100CAD911 /* UnityEngine.AndroidJNIModule_CodeGen.c in Sources */, + D53CD1162A7BAE8100CAD911 /* UnityEngine.IMGUIModule1.cpp in Sources */, D507C9392994A0A800CF3953 /* QRCameraSwitchButton.m in Sources */, + D53CD12E2A7BAE8100CAD911 /* Il2CppMetadataRegistration.c in Sources */, + D53CD0BB2A7BAE8100CAD911 /* BestHTTP30.cpp in Sources */, + D53CD1992A7BAE8100CAD911 /* Generics27.cpp in Sources */, + D53CD1B92A7BAE8200CAD911 /* Unity.Timeline_CodeGen.c in Sources */, + D53CD18C2A7BAE8100CAD911 /* UnityEngine.TilemapModule.cpp in Sources */, + D53CD0EC2A7BAE8100CAD911 /* BestHTTP6.cpp in Sources */, + D53CD0572A7BAE8100CAD911 /* GenericMethods7.cpp in Sources */, D507C9222994A0A800CF3953 /* LBXScanNative.m in Sources */, + D53CD13A2A7BAE8100CAD911 /* Generics40.cpp in Sources */, + D53CD1552A7BAE8100CAD911 /* UnityEngine.TerrainModule.cpp in Sources */, + D53CD1622A7BAE8100CAD911 /* Generics19.cpp in Sources */, D507C9342994A0A800CF3953 /* LBXPermissionPhotos.m in Sources */, - D55759DE2A5FAC16009369FC /* UnityEngine.cpp in Sources */, + D53CD05A2A7BAE8100CAD911 /* Il2CppGenericMethodTable.c in Sources */, + D53CC8922A7BA24A00CAD911 /* AppsFlyerAppController.mm in Sources */, + D53CD0ED2A7BAE8100CAD911 /* BestHTTP7.cpp in Sources */, + D53CD1BB2A7BAE8200CAD911 /* Generics20.cpp in Sources */, + D53CD0EB2A7BAE8100CAD911 /* ICSharpCode.SharpZipLib1.cpp in Sources */, + D53CD0772A7BAE8100CAD911 /* System.Xml6.cpp in Sources */, + D53CD0E32A7BAE8100CAD911 /* Generics49.cpp in Sources */, + D53CD1C92A7BAE8200CAD911 /* System.Xml9.cpp in Sources */, + D53CD1912A7BAE8100CAD911 /* Il2CppCCFieldValuesTable.cpp in Sources */, D507C9312994A0A800CF3953 /* LBXScanNativeViewController.m in Sources */, + D53CD0B12A7BAE8100CAD911 /* __Generated.cpp in Sources */, + D53CD0F22A7BAE8100CAD911 /* mscorlib12.cpp in Sources */, D507D2552994C61700CF3953 /* Filesystem.mm in Sources */, - D55759D92A5FAC16009369FC /* UnityEngine.IMGUIModule1.cpp in Sources */, + D53CD09F2A7BAE8100CAD911 /* Generics29.cpp in Sources */, + D53CD1242A7BAE8100CAD911 /* AmazingAssets.TerrainToMesh.cpp in Sources */, + D53CD14D2A7BAE8100CAD911 /* spine-unity2.cpp in Sources */, D507C9252994A0A800CF3953 /* LBXScanViewController.m in Sources */, + D53CD0592A7BAE8100CAD911 /* UnityEngine.UnityAnalyticsModule.cpp in Sources */, + D53CC8A32A7BA28D00CAD911 /* UnityAppController+Notifications.mm in Sources */, + D53CD14B2A7BAE8100CAD911 /* Generics57.cpp in Sources */, + D53CD0CF2A7BAE8100CAD911 /* UnityEngine.TextRenderingModule_CodeGen.c in Sources */, + D53CD0562A7BAE8100CAD911 /* mscorlib9.cpp in Sources */, + D53CD0682A7BAE8100CAD911 /* GenericMethods6.cpp in Sources */, + D53CD0802A7BAE8100CAD911 /* GenericMethods5.cpp in Sources */, D507D5F42994C62A00CF3953 /* NSUserDefaults.mm in Sources */, - D5575A032A5FAC16009369FC /* UnityEngine.TextCoreFontEngineModule.cpp in Sources */, - D55759962A5FAC16009369FC /* Il2CppCCTypeValuesTable.cpp in Sources */, - D557598D2A5FAC16009369FC /* UnityEngine.UnityAnalyticsModule.cpp in Sources */, - D5575A0B2A5FAC16009369FC /* Il2CppCCFieldValuesTable.cpp in Sources */, - D55759C12A5FAC16009369FC /* Il2CppGenericMethodPointerTable.c in Sources */, - D55759CA2A5FAC16009369FC /* mscorlib13.cpp in Sources */, + D53CD12F2A7BAE8100CAD911 /* BestHTTP12.cpp in Sources */, + D53CD1222A7BAE8100CAD911 /* spine-unity.cpp in Sources */, + D53CD1192A7BAE8100CAD911 /* UnityEngine.UIModule.cpp in Sources */, + D53CD1932A7BAE8100CAD911 /* UnityEngine.CoreModule2.cpp in Sources */, + D53CD1232A7BAE8100CAD911 /* UnityEngine.UIElementsModule12.cpp in Sources */, + D53CD1BC2A7BAE8200CAD911 /* Generics34.cpp in Sources */, + D53CD1692A7BAE8100CAD911 /* Assembly-CSharp1.cpp in Sources */, + D53CD0A32A7BAE8100CAD911 /* System3.cpp in Sources */, + D53CD1D22A7BAE8200CAD911 /* Assembly-CSharp31.cpp in Sources */, D507C9382994A0A800CF3953 /* QRToggleTorchButton.m in Sources */, - D557598A2A5FAC16009369FC /* Il2CppGenericAdjustorThunkTable.c in Sources */, - D55759CD2A5FAC16009369FC /* UnityEngine.UnityWebRequestModule_CodeGen.c in Sources */, - D55759D72A5FAC16009369FC /* UnityEngine.UI.cpp in Sources */, + D53CD0B32A7BAE8100CAD911 /* Generics28.cpp in Sources */, + D53CD0BD2A7BAE8100CAD911 /* Il2CppCCalculateTypeValues.cpp in Sources */, D507D5E52994C62A00CF3953 /* UnityMonetizationPurchasingAdapter.m in Sources */, + D53CD0AA2A7BAE8100CAD911 /* BestHTTP43.cpp in Sources */, + D53CD0F82A7BAE8100CAD911 /* System.Xml11.cpp in Sources */, + D53CD09C2A7BAE8100CAD911 /* Generics15.cpp in Sources */, + D53CD0622A7BAE8100CAD911 /* Generics5.cpp in Sources */, + D53CD1742A7BAE8100CAD911 /* UnityEngine.GridModule_CodeGen.c in Sources */, + D53CD06B2A7BAE8100CAD911 /* Generics11.cpp in Sources */, + D53CD1052A7BAE8100CAD911 /* System.Xml10.cpp in Sources */, + D53CD0732A7BAE8100CAD911 /* Il2CppInteropDataTable.cpp in Sources */, D507D30B2994C61700CF3953 /* UnityViewControllerListener.mm in Sources */, + D53CD1732A7BAE8100CAD911 /* Il2CppGenericClassTable.c in Sources */, D507C9162994A0A800CF3953 /* LBXScanTypes.m in Sources */, - D5575A152A5FAC16009369FC /* UnityEngine.UIElementsModule5.cpp in Sources */, + D53CD1322A7BAE8100CAD911 /* Assembly-CSharp40.cpp in Sources */, + D53CD0C62A7BAE8100CAD911 /* BestHTTP25.cpp in Sources */, D507D25F2994C61700CF3953 /* StoreReview.m in Sources */, + D53CD1472A7BAE8100CAD911 /* Generics55.cpp in Sources */, D507D30C2994C61700CF3953 /* LifeCycleListener.mm in Sources */, - D55759A32A5FAC16009369FC /* GenericMethods1.cpp in Sources */, - D55759AF2A5FAC16009369FC /* UnityEngine.SpriteShapeModule.cpp in Sources */, - D55759F72A5FAC16009369FC /* UnityEngine.UIElementsModule3.cpp in Sources */, - D55759F32A5FAC16009369FC /* Il2CppInvokerTable.cpp in Sources */, + D53CD1BA2A7BAE8200CAD911 /* UnityEngine.ParticleSystemModule_CodeGen.c in Sources */, D507D3072994C61700CF3953 /* UnityAppController+UnityInterface.mm in Sources */, - D55759F12A5FAC16009369FC /* UnityEngine.UIElementsNativeModule.cpp in Sources */, - D55759CF2A5FAC16009369FC /* Il2CppRgctxTable.c in Sources */, - D55759DA2A5FAC16009369FC /* UnityEngine.UIModule.cpp in Sources */, - D55759FD2A5FAC16009369FC /* UnityEngine.CoreModule1.cpp in Sources */, - D55759A52A5FAC16009369FC /* Generics2.cpp in Sources */, - D557599E2A5FAC16009369FC /* Generics6.cpp in Sources */, - D55759A92A5FAC16009369FC /* Generics3.cpp in Sources */, - D55759A22A5FAC16009369FC /* Generics16.cpp in Sources */, + D53CD0842A7BAE8100CAD911 /* Generics16.cpp in Sources */, + D53CD18A2A7BAE8100CAD911 /* Assembly-CSharp36.cpp in Sources */, + D53CD0D42A7BAE8100CAD911 /* BestHTTP27.cpp in Sources */, + D53CC8902A7BA24A00CAD911 /* AppsFlyeriOSWrapper.mm in Sources */, + D53CD1082A7BAE8100CAD911 /* mscorlib11.cpp in Sources */, + D53CD0C32A7BAE8100CAD911 /* UnityEngine.XRModule.cpp in Sources */, + D53CD1762A7BAE8100CAD911 /* UnityEngine.CoreModule1.cpp in Sources */, + D53CD1D72A7BAE8200CAD911 /* Generics21.cpp in Sources */, + D53CD1C42A7BAE8200CAD911 /* Assembly-CSharp18.cpp in Sources */, + D53CD17D2A7BAE8100CAD911 /* Generics24.cpp in Sources */, + D53CD0F32A7BAE8100CAD911 /* UnityEngine.UnityWebRequestModule_CodeGen.c in Sources */, + D53CD1CA2A7BAE8200CAD911 /* UnityEngine.UIElementsModule6.cpp in Sources */, D507D5EE2994C62A00CF3953 /* unity_services_locale.mm in Sources */, + D53CD0E72A7BAE8100CAD911 /* BestHTTP22.cpp in Sources */, + D53CD1332A7BAE8100CAD911 /* mscorlib22.cpp in Sources */, + D53CD0642A7BAE8100CAD911 /* Assembly-CSharp9.cpp in Sources */, + D53CD15D2A7BAE8100CAD911 /* Whinarn.UnityMeshSimplifier.Runtime.cpp in Sources */, + D53CD1632A7BAE8100CAD911 /* Il2CppInvokerTable.cpp in Sources */, D507D25D2994C61700CF3953 /* SplashScreen.mm in Sources */, - D55759A42A5FAC16009369FC /* UnityEngine.UIElementsNativeModule_CodeGen.c in Sources */, - D55759FE2A5FAC16009369FC /* Il2CppGenericInstDefinitions.c in Sources */, - D5575A112A5FAC16009369FC /* Generics23.cpp in Sources */, - D557599D2A5FAC16009369FC /* UnityICallRegistration.cpp in Sources */, + D53CD07C2A7BAE8100CAD911 /* System4.cpp in Sources */, + D53CD07F2A7BAE8100CAD911 /* CString.cpp in Sources */, + D53CD0E12A7BAE8100CAD911 /* Generics59.cpp in Sources */, + D53CD1902A7BAE8100CAD911 /* UnityEngine.UnityAnalyticsModule_CodeGen.c in Sources */, + D53CD14E2A7BAE8100CAD911 /* mscorlib19.cpp in Sources */, + D53CD0942A7BAE8100CAD911 /* Generics3.cpp in Sources */, + D53CD1952A7BAE8100CAD911 /* Assembly-CSharp23.cpp in Sources */, D507C93F2994A0A800CF3953 /* UIUtils.m in Sources */, - D55759EF2A5FAC16009369FC /* Il2CppMetadataUsage.c in Sources */, - D55759EE2A5FAC16009369FC /* UnityEngine.GridModule.cpp in Sources */, - D55759952A5FAC16009369FC /* UnityEngine.Physics2DModule_CodeGen.c in Sources */, - D55759C62A5FAC16009369FC /* UnityEngine.TextRenderingModule_CodeGen.c in Sources */, + D53CD1942A7BAE8100CAD911 /* Assembly-CSharp37.cpp in Sources */, + D53CD0B82A7BAE8100CAD911 /* mscorlib15.cpp in Sources */, + D53CD0922A7BAE8100CAD911 /* AmazingAssets.TerrainToMesh_CodeGen.c in Sources */, + D53CD0612A7BAE8100CAD911 /* System.Xml4.cpp in Sources */, D507D5DB2994C62900CF3953 /* Il2CppOptions.cpp in Sources */, D59AB8582A690C9900433200 /* Utilities.m in Sources */, - D5575A062A5FAC16009369FC /* mscorlib3.cpp in Sources */, D507D60E2994D1E300CF3953 /* main.mm in Sources */, - D55759D32A5FAC16009369FC /* UnityEngine.SpriteShapeModule_CodeGen.c in Sources */, - D55759E62A5FAC16009369FC /* UnityEngine.TextCoreTextEngineModule2.cpp in Sources */, - D5575A282A5FAC16009369FC /* Generics21.cpp in Sources */, - D55759B12A5FAC16009369FC /* GenericMethods2.cpp in Sources */, - D557599A2A5FAC16009369FC /* Generics7.cpp in Sources */, - D5575A162A5FAC16009369FC /* UnityEngine.UIElementsModule4.cpp in Sources */, - D557599C2A5FAC16009369FC /* UnityEngine.UIElementsModule8.cpp in Sources */, - D55759DB2A5FAC16009369FC /* UnityEngine.UIElementsModule.cpp in Sources */, + D53CD0872A7BAE8100CAD911 /* Il2CppCCalculateFieldValues3.cpp in Sources */, + D53CC8912A7BA24A00CAD911 /* AppsFlyer+AppController.m in Sources */, + D53CD0E92A7BAE8100CAD911 /* ICSharpCode.SharpZipLib.cpp in Sources */, + D53CD0FD2A7BAE8100CAD911 /* BestHTTP5.cpp in Sources */, + D53CD1C12A7BAE8200CAD911 /* Assembly-CSharp24.cpp in Sources */, + D53CD16F2A7BAE8100CAD911 /* Google.Protobuf2.cpp in Sources */, + D53CD1662A7BAE8100CAD911 /* Generics31.cpp in Sources */, D507D2472994C61700CF3953 /* UnityWebRequest.mm in Sources */, D507C91C2994A0A800CF3953 /* NSString+Customer.m in Sources */, - D55759FF2A5FAC16009369FC /* mscorlib1.cpp in Sources */, D507D3052994C61700CF3953 /* DynamicLibEngineAPI.mm in Sources */, + D53CD1452A7BAE8100CAD911 /* System.Configuration_CodeGen.c in Sources */, + D53CD1642A7BAE8100CAD911 /* UnityEngine.UI1.cpp in Sources */, D507C93B2994A0A800CF3953 /* QRCodeReaderView.m in Sources */, - D55759B62A5FAC16009369FC /* Il2CppCodeRegistration.cpp in Sources */, - D5575A222A5FAC16009369FC /* UnityEngine.UIElementsModule6.cpp in Sources */, - D55759EC2A5FAC16009369FC /* UnityEngine.TextCoreTextEngineModule_CodeGen.c in Sources */, - D5575A262A5FAC16009369FC /* UnityEngine.UnityWebRequestModule.cpp in Sources */, - D5575A102A5FAC16009369FC /* GenericMethods.cpp in Sources */, - D5575A1D2A5FAC16009369FC /* mscorlib5.cpp in Sources */, D507C92D2994A0A800CF3953 /* LBXScanView.m in Sources */, + D53CD0952A7BAE8100CAD911 /* Assembly-CSharp13.cpp in Sources */, + D53CD0832A7BAE8100CAD911 /* Generics12.cpp in Sources */, + D53CD1412A7BAE8100CAD911 /* System.cpp in Sources */, D507D24B2994C61700CF3953 /* CVTextureCache.mm in Sources */, - D55759C22A5FAC16009369FC /* mscorlib14.cpp in Sources */, + D53CC8A12A7BA28D00CAD911 /* UnityNotificationManager.m in Sources */, D507D2532994C61700CF3953 /* VideoPlayer.mm in Sources */, - D55759C32A5FAC16009369FC /* UnityEngine.CoreModule_CodeGen.c in Sources */, - D55759D22A5FAC16009369FC /* mscorlib11.cpp in Sources */, - D5575A232A5FAC16009369FC /* UnityEngine.UIElementsModule7.cpp in Sources */, - D55759F52A5FAC16009369FC /* Generics25.cpp in Sources */, + D53CD1802A7BAE8100CAD911 /* UnityEngine.PhysicsModule.cpp in Sources */, D507D5F22994C62A00CF3953 /* UnityEarlyTransactionObserver.mm in Sources */, + D53CD10F2A7BAE8100CAD911 /* Generics52.cpp in Sources */, + D53CD1172A7BAE8100CAD911 /* BestHTTP9.cpp in Sources */, + D53CD1002A7BAE8100CAD911 /* UnityEngine.InputModule.cpp in Sources */, D507C93D2994A0A800CF3953 /* QRCodeReader.m in Sources */, - D5575A052A5FAC16009369FC /* Generics26.cpp in Sources */, + D53CD0662A7BAE8100CAD911 /* Assembly-CSharp29.cpp in Sources */, + D53CD0542A7BAE8100CAD911 /* Generics10.cpp in Sources */, + D53CD0D02A7BAE8100CAD911 /* Generics58.cpp in Sources */, + D53CD1B22A7BAE8100CAD911 /* Assembly-CSharp26.cpp in Sources */, + D53CD16C2A7BAE8100CAD911 /* UnityEngine.AssetBundleModule_CodeGen.c in Sources */, D507D2612994C61700CF3953 /* UnityViewControllerBase+tvOS.mm in Sources */, + D53CD1D42A7BAE8200CAD911 /* UnityEngine.UnityWebRequestModule.cpp in Sources */, + D53CD1722A7BAE8100CAD911 /* UnityEngine.CoreModule.cpp in Sources */, + D53CD18E2A7BAE8100CAD911 /* Google.Protobuf1.cpp in Sources */, + D53CC8942A7BA24A00CAD911 /* AppsFlyerAttribution.m in Sources */, D507C91E2994A0A800CF3953 /* DataManager.m in Sources */, - D55759BF2A5FAC16009369FC /* Il2CppCCalculateFieldValues.cpp in Sources */, - D55759932A5FAC16009369FC /* mscorlib8.cpp in Sources */, - D55759C92A5FAC16009369FC /* UnityEngine.GameCenterModule.cpp in Sources */, + D53CD09B2A7BAE8100CAD911 /* UnityEngine.UI_CodeGen.c in Sources */, + D53CD1B82A7BAE8100CAD911 /* UnityEngine.AIModule.cpp in Sources */, + D53CD1AE2A7BAE8100CAD911 /* System.Core.cpp in Sources */, + D53CD06E2A7BAE8100CAD911 /* Il2CppCCTypeValuesTable.cpp in Sources */, D5BF397629C9B79400EC6351 /* UIViewController+Logger.mm in Sources */, - D5575A142A5FAC16009369FC /* UnresolvedVirtualCallStubs.cpp in Sources */, - D55759AD2A5FAC16009369FC /* UnityEngine.UI_CodeGen.c in Sources */, + D53CD0DC2A7BAE8100CAD911 /* BestHTTP32.cpp in Sources */, + D53CD1312A7BAE8100CAD911 /* BestHTTP13.cpp in Sources */, + D53CD1372A7BAE8100CAD911 /* Generics50.cpp in Sources */, + D53CD1A82A7BAE8100CAD911 /* Assembly-CSharp7.cpp in Sources */, + D53CD0A62A7BAE8100CAD911 /* BestHTTP42.cpp in Sources */, + D53CD1B42A7BAE8100CAD911 /* GenericMethods9.cpp in Sources */, D507D5E02994C62A00CF3953 /* UnityAdsLoadListener.mm in Sources */, - D55759922A5FAC16009369FC /* GenericMethods6.cpp in Sources */, - D5575A0A2A5FAC16009369FC /* UnityEngine.UnityAnalyticsModule_CodeGen.c in Sources */, + D53CD13D2A7BAE8100CAD911 /* UnityEngine.SharedInternalsModule.cpp in Sources */, + D53CD0BE2A7BAE8100CAD911 /* BestHTTP24.cpp in Sources */, + D53CD09A2A7BAE8100CAD911 /* Generics17.cpp in Sources */, + D53CD07B2A7BAE8100CAD911 /* System.Xml7.cpp in Sources */, D507D3092994C61700CF3953 /* RenderPluginDelegate.mm in Sources */, + D53CD0552A7BAE8100CAD911 /* GenericMethods12.cpp in Sources */, D59AB8552A690BC300433200 /* UIViewController+Purchase.mm in Sources */, + D53CD13E2A7BAE8100CAD911 /* UnityEngine.TextCoreTextEngineModule2.cpp in Sources */, + D53CD0D92A7BAE8100CAD911 /* System10.cpp in Sources */, + D53CD1792A7BAE8100CAD911 /* System.Numerics.cpp in Sources */, + D53CD1822A7BAE8100CAD911 /* UnityEngine.TextCoreFontEngineModule.cpp in Sources */, + D53CD1872A7BAE8100CAD911 /* UnityEngine.GameCenterModule_CodeGen.c in Sources */, + D53CD1072A7BAE8100CAD911 /* UnityEngine.InputLegacyModule.cpp in Sources */, + D53CD1402A7BAE8100CAD911 /* UnityEngine.UIModule_CodeGen.c in Sources */, + D53CD0B72A7BAE8100CAD911 /* BestHTTP.cpp in Sources */, + D53CD11B2A7BAE8100CAD911 /* BestHTTP38.cpp in Sources */, + D53CD0792A7BAE8100CAD911 /* UnityEngine.UIElementsModule8.cpp in Sources */, + D53CD1512A7BAE8100CAD911 /* UnityEngine.GridModule.cpp in Sources */, + D53CD14A2A7BAE8100CAD911 /* UnityEngine.TextCoreTextEngineModule_CodeGen.c in Sources */, + D53CD0A92A7BAE8100CAD911 /* Il2CppCodeRegistration.cpp in Sources */, + D53CD1382A7BAE8100CAD911 /* Unity.Timeline1.cpp in Sources */, + D53CD08D2A7BAE8100CAD911 /* System.Xml3.cpp in Sources */, + D53CD1892A7BAE8100CAD911 /* Assembly-CSharp22.cpp in Sources */, D5DE834F29C831FE0029E408 /* UIViewController+Share.mm in Sources */, D507C92C2994A0A800CF3953 /* CreateBarCodeViewController.m in Sources */, - D557598B2A5FAC16009369FC /* Generics10.cpp in Sources */, - D55759B72A5FAC16009369FC /* System2.cpp in Sources */, - D55759A02A5FAC16009369FC /* UnityEngine_CodeGen.c in Sources */, - D55759DD2A5FAC16009369FC /* UnityEngine.UIElementsModule12.cpp in Sources */, - D55759CB2A5FAC16009369FC /* mscorlib.cpp in Sources */, - D5575A202A5FAC16009369FC /* Generics8.cpp in Sources */, + D53CD15B2A7BAE8100CAD911 /* mscorlib24.cpp in Sources */, + D53CD0E82A7BAE8100CAD911 /* BestHTTP36.cpp in Sources */, + D53CD05E2A7BAE8100CAD911 /* System6.cpp in Sources */, + D53CD1672A7BAE8100CAD911 /* Mono.Security_CodeGen.c in Sources */, D507D5F32994C62A00CF3953 /* UnityPurchasing.m in Sources */, - D5575A002A5FAC16009369FC /* Generics24.cpp in Sources */, - D55759B92A5FAC16009369FC /* __Generated.cpp in Sources */, + D53CD0C72A7BAE8100CAD911 /* BestHTTP31.cpp in Sources */, + D53CD14C2A7BAE8100CAD911 /* UnityEngine.VRModule.cpp in Sources */, + D53CD1CF2A7BAE8200CAD911 /* Assembly-CSharp5.cpp in Sources */, D507C91D2994A0A800CF3953 /* UICKeyChainStore.m in Sources */, + D53CD1C32A7BAE8200CAD911 /* Assembly-CSharp4.cpp in Sources */, D507D25E2994C61700CF3953 /* ActivityIndicator.mm in Sources */, + D53CD0B42A7BAE8100CAD911 /* Generics14.cpp in Sources */, D507D2622994C61700CF3953 /* UnityView+iOS.mm in Sources */, - D557598E2A5FAC16009369FC /* Il2CppGenericMethodTable.c in Sources */, - D55759F22A5FAC16009369FC /* Generics19.cpp in Sources */, + D53CD17B2A7BAE8100CAD911 /* mscorlib1.cpp in Sources */, + D53CD10E2A7BAE8100CAD911 /* Generics46.cpp in Sources */, D507C9292994A0A800CF3953 /* ScanResultViewController.m in Sources */, - D55759992A5FAC16009369FC /* Il2CppInteropDataTable.cpp in Sources */, + D53CD0FB2A7BAE8100CAD911 /* Il2CppRgctxTable.c in Sources */, D507D30A2994C61700CF3953 /* AppDelegateListener.mm in Sources */, - D5575A212A5FAC16009369FC /* UnityEngine.AudioModule_CodeGen.c in Sources */, - D5575A0C2A5FAC16009369FC /* mscorlib2.cpp in Sources */, - D5575A012A5FAC16009369FC /* Generics18.cpp in Sources */, - D5575A242A5FAC16009369FC /* Generics9.cpp in Sources */, D507D2492994C61700CF3953 /* AVCapture.mm in Sources */, + D53CD1A72A7BAE8100CAD911 /* Assembly-CSharp33.cpp in Sources */, D507C92B2994A0A800CF3953 /* LBXScanBaseViewController.m in Sources */, - D5575A082A5FAC16009369FC /* UnityEngine.TilemapModule.cpp in Sources */, - D55759FB2A5FAC16009369FC /* UnityEngine.GridModule_CodeGen.c in Sources */, + D53CD1B62A7BAE8100CAD911 /* Generics22.cpp in Sources */, + D53CD06D2A7BAE8100CAD911 /* UnityEngine.Physics2DModule_CodeGen.c in Sources */, + D53CD1462A7BAE8100CAD911 /* Generics41.cpp in Sources */, + D53CD0742A7BAE8100CAD911 /* Assembly-CSharp17.cpp in Sources */, + D53CD1282A7BAE8100CAD911 /* spine-unity4.cpp in Sources */, D507C92E2994A0A800CF3953 /* LBXScanNetAnimation.m in Sources */, D59AB84C2A68FC8B00433200 /* AppConfiguration.m in Sources */, - D55759D42A5FAC16009369FC /* UnityEngine.UIElementsModule11.cpp in Sources */, + D53CD17F2A7BAE8100CAD911 /* Google.Protobuf_CodeGen.c in Sources */, + D53CD1852A7BAE8100CAD911 /* Generics26.cpp in Sources */, D507C9282994A0A800CF3953 /* LBXScanLineAnimation.m in Sources */, + D53CD1A52A7BAE8100CAD911 /* Assembly-CSharp27.cpp in Sources */, D507C9212994A0A800CF3953 /* AppDelegate.mm in Sources */, + D53CD15E2A7BAE8100CAD911 /* spine-unity3.cpp in Sources */, + D53CD0852A7BAE8100CAD911 /* GenericMethods1.cpp in Sources */, D507D3042994C61700CF3953 /* CrashReporter.mm in Sources */, - D55759E22A5FAC16009369FC /* Il2CppMetadataRegistration.c in Sources */, - D5575A072A5FAC16009369FC /* UnityEngine.GameCenterModule_CodeGen.c in Sources */, + D53CD1982A7BAE8100CAD911 /* System.Core_CodeGen.c in Sources */, + D53CD0BF2A7BAE8100CAD911 /* System13.cpp in Sources */, + D53CD19F2A7BAE8100CAD911 /* Generics23.cpp in Sources */, + D53CD1782A7BAE8100CAD911 /* Assembly-CSharp34.cpp in Sources */, + D53CD0A52A7BAE8100CAD911 /* __Generated_CodeGen.c in Sources */, D507D5EA2994C62A00CF3953 /* UnityAnalyticsWrapper.m in Sources */, D507D5EC2994C62A00CF3953 /* UnityMonetizationDecisionWrapper.m in Sources */, - D5575A092A5FAC16009369FC /* UnityEngine.UIElementsModule1.cpp in Sources */, - D5575A1F2A5FAC16009369FC /* Assembly-CSharp_CodeGen.c in Sources */, + D53CD1842A7BAE8100CAD911 /* Generics32.cpp in Sources */, + D53CD1C52A7BAE8200CAD911 /* UnityEngine.UnityWebRequestAudioModule.cpp in Sources */, + D53CD0D82A7BAE8100CAD911 /* BestHTTP_CodeGen.c in Sources */, + D53CD1B32A7BAE8100CAD911 /* UnityEngine.InputLegacyModule_CodeGen.c in Sources */, + D53CD1702A7BAE8100CAD911 /* UnityEngine.SubsystemsModule.cpp in Sources */, + D53CD1252A7BAE8100CAD911 /* UnityEngine.cpp in Sources */, + D53CD1342A7BAE8100CAD911 /* spine-unity5.cpp in Sources */, D507D3062994C61700CF3953 /* UnityAppController.mm in Sources */, - D557598F2A5FAC16009369FC /* Generics4.cpp in Sources */, - D55759CC2A5FAC16009369FC /* mscorlib12.cpp in Sources */, + D53CD0962A7BAE8100CAD911 /* Il2CppCCalculateFieldValues2.cpp in Sources */, + D53CD0762A7BAE8100CAD911 /* System5.cpp in Sources */, D507D2592994C61700CF3953 /* UnityView.mm in Sources */, - D557599F2A5FAC16009369FC /* GenericMethods5.cpp in Sources */, - D55759C82A5FAC16009369FC /* mscorlib17.cpp in Sources */, + D53CD0FE2A7BAE8100CAD911 /* ICSharpCode.SharpZipLib2.cpp in Sources */, + D53CD0C42A7BAE8100CAD911 /* BestHTTP1.cpp in Sources */, + D53CD09E2A7BAE8100CAD911 /* UnityEngine.TextRenderingModule.cpp in Sources */, + D53CD0C52A7BAE8100CAD911 /* Il2CppGenericMethodPointerTable.c in Sources */, + D53CD0EF2A7BAE8100CAD911 /* BestHTTP37.cpp in Sources */, + D53CD1182A7BAE8100CAD911 /* BestHTTP8.cpp in Sources */, D507D2502994C61700CF3953 /* UnityReplayKit_Scripting.mm in Sources */, - D5575A252A5FAC16009369FC /* Generics.cpp in Sources */, - D55759BE2A5FAC16009369FC /* Il2CppCCalculateTypeValues.cpp in Sources */, - D55759B32A5FAC16009369FC /* Generics1.cpp in Sources */, - D5575A272A5FAC16009369FC /* mscorlib4.cpp in Sources */, + D53CD1442A7BAE8100CAD911 /* UnityEngine.TextCoreTextEngineModule3.cpp in Sources */, + D53CD0702A7BAE8100CAD911 /* UnityEngine.VFXModule_CodeGen.c in Sources */, + D53CD0E62A7BAE8100CAD911 /* mscorlib13.cpp in Sources */, + D53CD08A2A7BAE8100CAD911 /* System.Runtime.CompilerServices.Unsafe_CodeGen.c in Sources */, D507C9242994A0A800CF3953 /* StyleDIY.m in Sources */, - D55759B52A5FAC16009369FC /* System.Configuration.cpp in Sources */, - D5575A0D2A5FAC16009369FC /* System.Core_CodeGen.c in Sources */, - D55759AB2A5FAC16009369FC /* Assembly-CSharp.cpp in Sources */, - D55759972A5FAC16009369FC /* Generics13.cpp in Sources */, - D55759942A5FAC16009369FC /* Generics11.cpp in Sources */, D507C9402994A0A800CF3953 /* NSData+Base64.m in Sources */, - D55759F82A5FAC16009369FC /* UnityEngine.UIElementsModule2.cpp in Sources */, + D53CD1022A7BAE8100CAD911 /* Unity.Notifications.iOS_CodeGen.c in Sources */, + D53CD15C2A7BAE8100CAD911 /* mscorlib18.cpp in Sources */, + D53CD10C2A7BAE8100CAD911 /* UnityEngine.IMGUIModule_CodeGen.c in Sources */, D507C9352994A0A800CF3953 /* LBXPermissionCamera.m in Sources */, - D55759D52A5FAC16009369FC /* UnityEngine.IMGUIModule_CodeGen.c in Sources */, - D55759EB2A5FAC16009369FC /* System.Configuration_CodeGen.c in Sources */, - D557598C2A5FAC16009369FC /* mscorlib9.cpp in Sources */, D507D2512994C61700CF3953 /* MetalHelper.mm in Sources */, - D55759912A5FAC16009369FC /* System.Xml_CodeGen.c in Sources */, - D55759B02A5FAC16009369FC /* UnityEngine.TextRenderingModule.cpp in Sources */, - D55759C72A5FAC16009369FC /* mscorlib16.cpp in Sources */, D507C91F2994A0A800CF3953 /* JcWallet.mm in Sources */, - D55759FC2A5FAC16009369FC /* System.Xml.cpp in Sources */, + D53CD0B62A7BAE8100CAD911 /* UnityEngine.UnityWebRequestWWWModule.cpp in Sources */, + D53CD1362A7BAE8100CAD911 /* Generics44.cpp in Sources */, D507D5E22994C62A00CF3953 /* UnityAdsNativeObject.m in Sources */, - D55759ED2A5FAC16009369FC /* UnityEngine.TextCoreTextEngineModule1.cpp in Sources */, + D53CD12C2A7BAE8100CAD911 /* UnityEngine.TextCoreTextEngineModule.cpp in Sources */, + D53CD0F62A7BAE8100CAD911 /* UnityEngine.DirectorModule.cpp in Sources */, + D53CD0AD2A7BAE8100CAD911 /* Google.Protobuf.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -4091,6 +5179,7 @@ "$(SRCROOT)", "$(PROJECT_DIR)/Libraries", /Users/zhl/Documents/workspace/crypto/cocos_js/external/ios/libs, + "$(PROJECT_DIR)/Libraries/Plugins/iOS", ); ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = ( @@ -4180,6 +5269,7 @@ "$(SRCROOT)", "$(PROJECT_DIR)/Libraries", /Users/zhl/Documents/workspace/crypto/cocos_js/external/ios/libs, + "$(PROJECT_DIR)/Libraries/Plugins/iOS", ); ONLY_ACTIVE_ARCH = NO; OTHER_CFLAGS = ( @@ -4410,6 +5500,7 @@ "$(SRCROOT)", "$(PROJECT_DIR)/Libraries", /Users/zhl/Documents/workspace/crypto/cocos_js/external/ios/libs, + "$(PROJECT_DIR)/Libraries/Plugins/iOS", ); ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = ( @@ -4586,6 +5677,7 @@ "$(SRCROOT)", "$(PROJECT_DIR)/Libraries", /Users/zhl/Documents/workspace/crypto/cocos_js/external/ios/libs, + "$(PROJECT_DIR)/Libraries/Plugins/iOS", ); ONLY_ACTIVE_ARCH = YES; OTHER_CFLAGS = ( diff --git a/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/UserInterfaceState.xcuserstate b/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/UserInterfaceState.xcuserstate index 1013850..111b5f6 100644 Binary files a/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/UserInterfaceState.xcuserstate and b/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist index 4fdd4c6..61e30c0 100644 --- a/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +++ b/Unity-iPhone.xcworkspace/xcuserdata/zhl.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -516,5 +516,37 @@ landmarkType = "7"> + + + + + + + +