Commit 87dd3a5b authored by Mazy's avatar Mazy

fix voice and withdraw event bugs

parent 65e836e9
...@@ -993,7 +993,7 @@ ...@@ -993,7 +993,7 @@
CODE_SIGN_ENTITLEMENTS = GYDemo/GYDemo.entitlements; CODE_SIGN_ENTITLEMENTS = GYDemo/GYDemo.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Manual; CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 121; CURRENT_PROJECT_VERSION = 103;
DEVELOPMENT_TEAM = XWMRLLSSFL; DEVELOPMENT_TEAM = XWMRLLSSFL;
ENABLE_BITCODE = NO; ENABLE_BITCODE = NO;
GCC_INCREASE_PRECOMPILED_HEADER_SHARING = NO; GCC_INCREASE_PRECOMPILED_HEADER_SHARING = NO;
...@@ -1025,7 +1025,7 @@ ...@@ -1025,7 +1025,7 @@
CODE_SIGN_ENTITLEMENTS = GYDemo/GYDemo.entitlements; CODE_SIGN_ENTITLEMENTS = GYDemo/GYDemo.entitlements;
CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_IDENTITY = "iPhone Developer";
CODE_SIGN_STYLE = Manual; CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 121; CURRENT_PROJECT_VERSION = 103;
DEVELOPMENT_TEAM = XWMRLLSSFL; DEVELOPMENT_TEAM = XWMRLLSSFL;
ENABLE_BITCODE = NO; ENABLE_BITCODE = NO;
GCC_INCREASE_PRECOMPILED_HEADER_SHARING = NO; GCC_INCREASE_PRECOMPILED_HEADER_SHARING = NO;
......
...@@ -79,7 +79,14 @@ NSDictionary* appLaunchOpts; ...@@ -79,7 +79,14 @@ NSDictionary* appLaunchOpts;
[[CGUserManager shared] addLocCollection:@"click_withdraw_redPack_5" value:@""]; [[CGUserManager shared] addLocCollection:@"click_withdraw_redPack_5" value:@""];
[[CGUserManager shared] addLocCollection:@"show_withdraw_page" value:@""]; [[CGUserManager shared] addLocCollection:@"show_withdraw_page" value:@""];
GYWebViewController * web = [[GYWebViewController alloc] init]; GYWebViewController * web = [[GYWebViewController alloc] init];
web.url = [[CGUserManager shared].h5_url objectForKey:@"withdrawurl"]; NSString *withdrawUrl = [[CGUserManager shared].h5_url objectForKey:@"withdrawurl"];
//显示操作引导
Data * data = [[Data alloc] init];
if(![[data Read] objectForKey:@"firstShowNovice"]){
[data WirteDic:@"1" Key:@"firstShowNovice"];
withdrawUrl = [withdrawUrl stringByAppendingString:@"?novice=1"];
}
web.url = withdrawUrl;
UINavigationController * nav = [[UINavigationController alloc] initWithRootViewController:web]; UINavigationController * nav = [[UINavigationController alloc] initWithRootViewController:web];
nav.modalPresentationStyle = UIModalPresentationFullScreen; nav.modalPresentationStyle = UIModalPresentationFullScreen;
[[[self ufw] appController].window.rootViewController presentViewController:nav animated:YES completion:nil]; [[[self ufw] appController].window.rootViewController presentViewController:nav animated:YES completion:nil];
...@@ -350,7 +357,7 @@ NSDictionary* appLaunchOpts; ...@@ -350,7 +357,7 @@ NSDictionary* appLaunchOpts;
}]; }];
}else{ } else {
[[CGUserManager shared] addLocCollection:@"play_adVideo_end_cloud_speed_up" value:@""]; [[CGUserManager shared] addLocCollection:@"play_adVideo_end_cloud_speed_up" value:@""];
} }
...@@ -684,6 +691,10 @@ NSDictionary* appLaunchOpts; ...@@ -684,6 +691,10 @@ NSDictionary* appLaunchOpts;
[self.window makeKeyAndVisible]; [self.window makeKeyAndVisible];
[[CGUserManager shared] getServiceInfo:^{
} failure:^{
}];
[ZJGuideConfig configWithWindow:self.window finishMainVC:nil showGuide:^(BOOL result) { [ZJGuideConfig configWithWindow:self.window finishMainVC:nil showGuide:^(BOOL result) {
dispatch_async(dispatch_get_main_queue(), ^{ dispatch_async(dispatch_get_main_queue(), ^{
[self initUnity]; [self initUnity];
...@@ -699,7 +710,7 @@ NSDictionary* appLaunchOpts; ...@@ -699,7 +710,7 @@ NSDictionary* appLaunchOpts;
NSString *status = [[CGUserManager shared].appSwitch[@"isopenH5"] stringValue]; NSString *status = [[CGUserManager shared].appSwitch[@"isopenH5"] stringValue];
NSLog(@"isopenH5 = %@", status); NSLog(@"isopenH5 = %@", status);
if ([status isEqualToString:@"1"]) { if (![status isEqualToString:@"1"]) {
Data * data = [[Data alloc] init]; Data * data = [[Data alloc] init];
if([[data Read] objectForKey:@"refresh_token"] == nil) { if([[data Read] objectForKey:@"refresh_token"] == nil) {
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(launchAdSuccesShow) name:LaunchAdSuccesShow object:nil]; [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(launchAdSuccesShow) name:LaunchAdSuccesShow object:nil];
...@@ -718,7 +729,6 @@ NSDictionary* appLaunchOpts; ...@@ -718,7 +729,6 @@ NSDictionary* appLaunchOpts;
naviVC.modalPresentationStyle = UIModalPresentationFullScreen; naviVC.modalPresentationStyle = UIModalPresentationFullScreen;
[[[self ufw] appController].window.rootViewController.view addSubview:naviVC.view]; [[[self ufw] appController].window.rootViewController.view addSubview:naviVC.view];
[[[self ufw] appController].window.rootViewController addChildViewController:naviVC]; [[[self ufw] appController].window.rootViewController addChildViewController:naviVC];
// [[[self ufw] appController].window.rootViewController presentViewController:naviVC animated:false completion:nil];
// }); // });
} }
......
...@@ -398,6 +398,9 @@ static IOSADManager * manager = nil; ...@@ -398,6 +398,9 @@ static IOSADManager * manager = nil;
[[CGUserManager shared] addLocCollection:@"splash_request" value:@"splash_request_success"]; [[CGUserManager shared] addLocCollection:@"splash_request" value:@"splash_request_success"];
NSMutableArray * models = [NSMutableArray new]; NSMutableArray * models = [NSMutableArray new];
NSArray * arr = response[@"result"][@"data"]; NSArray * arr = response[@"result"][@"data"];
if (arr.count <= 0) {
return;
}
for (NSDictionary * dict in arr) { for (NSDictionary * dict in arr) {
GYAdsTrackModel * model = [GYAdsTrackModel new]; GYAdsTrackModel * model = [GYAdsTrackModel new];
[model setValuesForKeysWithDictionary:dict]; [model setValuesForKeysWithDictionary:dict];
...@@ -430,6 +433,9 @@ static IOSADManager * manager = nil; ...@@ -430,6 +433,9 @@ static IOSADManager * manager = nil;
NSMutableArray * models = [NSMutableArray new]; NSMutableArray * models = [NSMutableArray new];
NSArray * arr = response[@"result"][@"data"]; NSArray * arr = response[@"result"][@"data"];
if (arr.count <= 0) {
return;
}
for (NSDictionary * dict in arr) { for (NSDictionary * dict in arr) {
GYAdsTrackModel * model = [GYAdsTrackModel new]; GYAdsTrackModel * model = [GYAdsTrackModel new];
[model setValuesForKeysWithDictionary:dict]; [model setValuesForKeysWithDictionary:dict];
...@@ -468,11 +474,17 @@ static IOSADManager * manager = nil; ...@@ -468,11 +474,17 @@ static IOSADManager * manager = nil;
[[CGNetworkTools shared] getWithAdsAction:getAdsInfo parameters: @{@"slotName": @"common_video"} success:^(id _Nonnull response) { [[CGNetworkTools shared] getWithAdsAction:getAdsInfo parameters: @{@"slotName": @"common_video"} success:^(id _Nonnull response) {
if ([[response objectForKey:@"status"] intValue] == 200) { if ([[response objectForKey:@"status"] intValue] == 200) {
requestToTry = 0; requestToTry = 0;
NSLog(@"common_video-response = %@",response); NSLog(@"common_video-response = %@",response);
[[CGUserManager shared] addLocCollection:@"reward_request" value:@"reward_request_success"]; [[CGUserManager shared] addLocCollection:@"reward_request" value:@"reward_request_success"];
NSMutableArray * models = [[NSMutableArray alloc]init]; NSMutableArray * models = [[NSMutableArray alloc]init];
NSArray * arr = response[@"result"][@"data"]; NSArray * arr = response[@"result"][@"data"];
if (arr.count <= 0) {
return;
}
for (NSDictionary * dict in arr) { for (NSDictionary * dict in arr) {
GYAdsTrackModel * model = [GYAdsTrackModel new]; GYAdsTrackModel * model = [GYAdsTrackModel new];
[model setValuesForKeysWithDictionary:dict]; [model setValuesForKeysWithDictionary:dict];
......
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
self.progressView = [[UIProgressView alloc] initWithFrame:CGRectMake(0, statusBarFrameHeight, KScreenWidth, 2)]; self.progressView = [[UIProgressView alloc] initWithFrame:CGRectMake(0, statusBarFrameHeight, KScreenWidth, 2)];
_progressView.backgroundColor = [UIColor groupTableViewBackgroundColor]; _progressView.backgroundColor = [UIColor groupTableViewBackgroundColor];
_progressView.progressTintColor = UIColor.whiteColor; //kColorWithRGB(112, 156, 246); _progressView.progressTintColor = kColorWithRGB(112, 156, 246);
_progressView.transform = CGAffineTransformMakeScale(1.0f, 1.5f); _progressView.transform = CGAffineTransformMakeScale(1.0f, 1.5f);
[self.view addSubview:_progressView]; [self.view addSubview:_progressView];
[self.view bringSubviewToFront:self.progressView]; [self.view bringSubviewToFront:self.progressView];
......
...@@ -3,164 +3,165 @@ ...@@ -3,164 +3,165 @@
"traceEvents":[ "traceEvents":[
{ "pid": 1, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } }, { "pid": 1, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } },
{ "pid": 1, "tid": 1, "ts": 820.4, "dur": 17506536, "ph": "X", "name": "il2cpp.exe", "args": { "durationMS": 17506.536, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 752.7, "dur": 19063312, "ph": "X", "name": "il2cpp.exe", "args": { "durationMS": 19063.312, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16569, "dur": 17490745.6, "ph": "X", "name": "ConvertAssemblies", "args": { "durationMS": 17490.7456, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 16545.3, "dur": 19047475.2, "ph": "X", "name": "ConvertAssemblies", "args": { "durationMS": 19047.4752, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 38376.2, "dur": 92774.8, "ph": "X", "name": "Collect assemblies to convert", "args": { "durationMS": 92.7748, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 39175, "dur": 102786.6, "ph": "X", "name": "Collect assemblies to convert", "args": { "durationMS": 102.7866, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 131545.4, "dur": 35291.9, "ph": "X", "name": "RegisterCorlib", "args": { "durationMS": 35.2919, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 142381.4, "dur": 36481.2, "ph": "X", "name": "RegisterCorlib", "args": { "durationMS": 36.4812, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 166988.8, "dur": 51364, "ph": "X", "name": "PreProcessIL", "args": { "durationMS": 51.364, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 179101.4, "dur": 55875.4, "ph": "X", "name": "PreProcessIL", "args": { "durationMS": 55.8754, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 166989.9, "dur": 9321.3, "ph": "X", "name": "Inject base types and finalizers into COM and Windows Runtime types", "args": { "durationMS": 9.3213, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 179102.4, "dur": 9641.1, "ph": "X", "name": "Inject base types and finalizers into COM and Windows Runtime types", "args": { "durationMS": 9.6411, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 167358.9, "dur": 6440.3, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 6.4403, "detail": "mscorlib" } }, { "pid": 1, "tid": 1, "ts": 179473.2, "dur": 6611.3, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 6.6113, "detail": "mscorlib" } },
{ "pid": 1, "tid": 1, "ts": 174541.5, "dur": 714.3, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 0.7143, "detail": "DOTween" } }, { "pid": 1, "tid": 1, "ts": 186823.8, "dur": 730.6, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 0.7306, "detail": "DOTween" } },
{ "pid": 1, "tid": 1, "ts": 175256.1, "dur": 534.3, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 0.5343, "detail": "UnityEngine.UI" } }, { "pid": 1, "tid": 1, "ts": 187554.9, "dur": 540.4, "ph": "X", "name": "ModifyCOMAndWindowsRuntimeTypes in assembly", "args": { "durationMS": 0.5404, "detail": "UnityEngine.UI" } },
{ "pid": 1, "tid": 1, "ts": 176313.3, "dur": 42039.2, "ph": "X", "name": "ApplyDefaultMarshalAsAttribute", "args": { "durationMS": 42.0392, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 188746.6, "dur": 46230, "ph": "X", "name": "ApplyDefaultMarshalAsAttribute", "args": { "durationMS": 46.23, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 176460.3, "dur": 25469.4, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 25.4694, "detail": "mscorlib" } }, { "pid": 1, "tid": 1, "ts": 188908, "dur": 28286, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 28.286, "detail": "mscorlib" } },
{ "pid": 1, "tid": 1, "ts": 202028.8, "dur": 1952.3, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.9523, "detail": "System" } }, { "pid": 1, "tid": 1, "ts": 217299.3, "dur": 2005.4, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 2.0054, "detail": "System" } },
{ "pid": 1, "tid": 1, "ts": 204212.2, "dur": 1850, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.85, "detail": "UnityEngine.CoreModule" } }, { "pid": 1, "tid": 1, "ts": 219548, "dur": 1876.1, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.8761, "detail": "UnityEngine.CoreModule" } },
{ "pid": 1, "tid": 1, "ts": 206404.5, "dur": 368.4, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.3684, "detail": "UnityEngine.AndroidJNIModule" } }, { "pid": 1, "tid": 1, "ts": 221776.9, "dur": 436.6, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.4366, "detail": "UnityEngine.AndroidJNIModule" } },
{ "pid": 1, "tid": 1, "ts": 207770.6, "dur": 5537.4, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 5.5374, "detail": "DOTween" } }, { "pid": 1, "tid": 1, "ts": 223323.9, "dur": 5809.2, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 5.8092, "detail": "DOTween" } },
{ "pid": 1, "tid": 1, "ts": 213309.3, "dur": 1806.5, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.8065, "detail": "UnityEngine.UI" } }, { "pid": 1, "tid": 1, "ts": 229134.2, "dur": 1791.3, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.7913, "detail": "UnityEngine.UI" } },
{ "pid": 1, "tid": 1, "ts": 215869.6, "dur": 1814.5, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 1.8145, "detail": "Unity.TextMeshPro" } }, { "pid": 1, "tid": 1, "ts": 231480.7, "dur": 373.6, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.3736, "detail": "I18N.CJK" } },
{ "pid": 1, "tid": 1, "ts": 217684.5, "dur": 667.1, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.6671, "detail": "Assembly-CSharp" } }, { "pid": 1, "tid": 1, "ts": 231854.8, "dur": 2503.5, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 2.5035, "detail": "Unity.TextMeshPro" } },
{ "pid": 1, "tid": 1, "ts": 218475.1, "dur": 33467.3, "ph": "X", "name": "WriteResources", "args": { "durationMS": 33.4673, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 234359.2, "dur": 616.5, "ph": "X", "name": "ApplyDefaultMarshalAsAttributeVisitor in assembly", "args": { "durationMS": 0.6165, "detail": "Assembly-CSharp" } },
{ "pid": 1, "tid": 1, "ts": 252449, "dur": 48032, "ph": "X", "name": "CopyEtcFolder", "args": { "durationMS": 48.032, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 235101.2, "dur": 7153.4, "ph": "X", "name": "WriteResources", "args": { "durationMS": 7.1534, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 301520.4, "dur": 248870.4, "ph": "X", "name": "PreProcessStage", "args": { "durationMS": 248.8704, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 242385, "dur": 27108, "ph": "X", "name": "CopyEtcFolder", "args": { "durationMS": 27.108, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 551462.5, "dur": 1289.8, "ph": "X", "name": "Debugger Sequence Points", "args": { "durationMS": 1.2898, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 270207, "dur": 252378.9, "ph": "X", "name": "PreProcessStage", "args": { "durationMS": 252.3789, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 553542.2, "dur": 1252977.2, "ph": "X", "name": "Generics Collection", "args": { "durationMS": 1252.9772, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 523396.8, "dur": 1420.5, "ph": "X", "name": "Debugger Sequence Points", "args": { "durationMS": 1.4205, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 553543.3, "dur": 1228980.9, "ph": "X", "name": "GenericsCollector.Collect", "args": { "durationMS": 1228.9809, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 525596.6, "dur": 1387490.6, "ph": "X", "name": "Generics Collection", "args": { "durationMS": 1387.4906, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 554221.3, "dur": 12789.3, "ph": "X", "name": "GenericCodeFlowGraphCollector.Collect", "args": { "durationMS": 12.7893, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 525597.7, "dur": 1359378.6, "ph": "X", "name": "GenericsCollector.Collect", "args": { "durationMS": 1359.3786, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 554222.6, "dur": 12291.8, "ph": "X", "name": "GenericCodeFlowGraphCollector.GetTypesAndMethodsForAnalysis", "args": { "durationMS": 12.2918, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 526267.9, "dur": 14951.6, "ph": "X", "name": "GenericCodeFlowGraphCollector.Collect", "args": { "durationMS": 14.9516, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1782531.8, "dur": 22947, "ph": "X", "name": "CollectGenericVirtualMethods.Collect", "args": { "durationMS": 22.947, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 526268.9, "dur": 14377.9, "ph": "X", "name": "GenericCodeFlowGraphCollector.GetTypesAndMethodsForAnalysis", "args": { "durationMS": 14.3779, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1805481.2, "dur": 827.5, "ph": "X", "name": "AddExtraTypes", "args": { "durationMS": 0.8275, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 1884984.6, "dur": 27089.8, "ph": "X", "name": "CollectGenericVirtualMethods.Collect", "args": { "durationMS": 27.0898, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1806520.8, "dur": 1321.4, "ph": "X", "name": "Add Windows Runtime type names", "args": { "durationMS": 1.3214, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 1912077.4, "dur": 781.2, "ph": "X", "name": "AddExtraTypes", "args": { "durationMS": 0.7812, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1808498.8, "dur": 8791732.8, "ph": "X", "name": "AllAssemblyConversion", "args": { "durationMS": 8791.7328, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 1913089, "dur": 1342, "ph": "X", "name": "Add Windows Runtime type names", "args": { "durationMS": 1.342, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 1809083.6, "dur": 3587442.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 3587.4424, "detail": "mscorlib" } }, { "pid": 1, "tid": 1, "ts": 1915259.2, "dur": 9621819.2, "ph": "X", "name": "AllAssemblyConversion", "args": { "durationMS": 9621.8192, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 5396528.4, "dur": 5668.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 5.6688, "detail": "System.Configuration" } }, { "pid": 1, "tid": 1, "ts": 1915950.4, "dur": 3986758.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 3986.7588, "detail": "mscorlib" } },
{ "pid": 1, "tid": 1, "ts": 5402199.2, "dur": 13266.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 13.2666, "detail": "Mono.Security" } }, { "pid": 1, "tid": 1, "ts": 5902712.4, "dur": 5421.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 5.4217, "detail": "System.Configuration" } },
{ "pid": 1, "tid": 1, "ts": 5415467.6, "dur": 1238.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1.2388, "detail": "System.Xml" } }, { "pid": 1, "tid": 1, "ts": 5908136.4, "dur": 14578.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 14.5786, "detail": "Mono.Security" } },
{ "pid": 1, "tid": 1, "ts": 5416708, "dur": 453281.3, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 453.2813, "detail": "System" } }, { "pid": 1, "tid": 1, "ts": 5922716.8, "dur": 920.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.9208, "detail": "System.Xml" } },
{ "pid": 1, "tid": 1, "ts": 5869991.2, "dur": 1397.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1.3978, "detail": "System.Core" } }, { "pid": 1, "tid": 1, "ts": 5923639.2, "dur": 511351.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 511.3516, "detail": "System" } },
{ "pid": 1, "tid": 1, "ts": 5871390.4, "dur": 15575.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 15.5757, "detail": "UnityEngine.SharedInternalsModule" } }, { "pid": 1, "tid": 1, "ts": 6434993.2, "dur": 1431.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1.4315, "detail": "System.Core" } },
{ "pid": 1, "tid": 1, "ts": 5886967.6, "dur": 550086.3, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 550.0863, "detail": "UnityEngine.CoreModule" } }, { "pid": 1, "tid": 1, "ts": 6436426, "dur": 17040.1, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 17.0401, "detail": "UnityEngine.SharedInternalsModule" } },
{ "pid": 1, "tid": 1, "ts": 6437055.2, "dur": 625.3, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.6253, "detail": "UnityEngine.GridModule" } }, { "pid": 1, "tid": 1, "ts": 6453468, "dur": 599990.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 599.9904, "detail": "UnityEngine.CoreModule" } },
{ "pid": 1, "tid": 1, "ts": 6437682, "dur": 860.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.8606, "detail": "UnityEngine.ImageConversionModule" } }, { "pid": 1, "tid": 1, "ts": 7053460.8, "dur": 698.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.6985, "detail": "UnityEngine.GridModule" } },
{ "pid": 1, "tid": 1, "ts": 6438543.6, "dur": 15488.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 15.4882, "detail": "UnityEngine.InputLegacyModule" } }, { "pid": 1, "tid": 1, "ts": 7054160, "dur": 1000.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1.0004, "detail": "UnityEngine.ImageConversionModule" } },
{ "pid": 1, "tid": 1, "ts": 6454033.6, "dur": 23658, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 23.658, "detail": "UnityEngine.Physics2DModule" } }, { "pid": 1, "tid": 1, "ts": 7055162.4, "dur": 16345.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 16.3452, "detail": "UnityEngine.InputLegacyModule" } },
{ "pid": 1, "tid": 1, "ts": 6477692.8, "dur": 23608.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 23.6085, "detail": "UnityEngine.TextRenderingModule" } }, { "pid": 1, "tid": 1, "ts": 7071509.6, "dur": 23967.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 23.9678, "detail": "UnityEngine.Physics2DModule" } },
{ "pid": 1, "tid": 1, "ts": 6501303.2, "dur": 24923.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 24.9235, "detail": "UnityEngine.UnityWebRequestModule" } }, { "pid": 1, "tid": 1, "ts": 7095481.6, "dur": 22273.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 22.2734, "detail": "UnityEngine.TextRenderingModule" } },
{ "pid": 1, "tid": 1, "ts": 6526228, "dur": 82753.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 82.7532, "detail": "UnityEngine.AndroidJNIModule" } }, { "pid": 1, "tid": 1, "ts": 7117756.8, "dur": 31121.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 31.1212, "detail": "UnityEngine.UnityWebRequestModule" } },
{ "pid": 1, "tid": 1, "ts": 6608983.6, "dur": 26804.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 26.8042, "detail": "UnityEngine.AnimationModule" } }, { "pid": 1, "tid": 1, "ts": 7148880, "dur": 93885.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 93.8858, "detail": "UnityEngine.AndroidJNIModule" } },
{ "pid": 1, "tid": 1, "ts": 6635792.4, "dur": 14759, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 14.759, "detail": "UnityEngine.AudioModule" } }, { "pid": 1, "tid": 1, "ts": 7242768, "dur": 30168.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 30.1684, "detail": "UnityEngine.AnimationModule" } },
{ "pid": 1, "tid": 1, "ts": 6650553.6, "dur": 53090.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 53.0902, "detail": "UnityEngine.GameCenterModule" } }, { "pid": 1, "tid": 1, "ts": 7272937.6, "dur": 14080, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 14.08, "detail": "UnityEngine.AudioModule" } },
{ "pid": 1, "tid": 1, "ts": 6703646, "dur": 90868.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 90.8684, "detail": "UnityEngine.IMGUIModule" } }, { "pid": 1, "tid": 1, "ts": 7287019.2, "dur": 60809.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 60.8092, "detail": "UnityEngine.GameCenterModule" } },
{ "pid": 1, "tid": 1, "ts": 6794518.4, "dur": 2611.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 2.6117, "detail": "UnityEngine.JSONSerializeModule" } }, { "pid": 1, "tid": 1, "ts": 7347829.6, "dur": 100629, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 100.629, "detail": "UnityEngine.IMGUIModule" } },
{ "pid": 1, "tid": 1, "ts": 6797132, "dur": 22417.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 22.4172, "detail": "UnityEngine.PhysicsModule" } }, { "pid": 1, "tid": 1, "ts": 7448460.8, "dur": 2943.3, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 2.9433, "detail": "UnityEngine.JSONSerializeModule" } },
{ "pid": 1, "tid": 1, "ts": 6819550.4, "dur": 646.9, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.6469, "detail": "UnityEngine.SpriteShapeModule" } }, { "pid": 1, "tid": 1, "ts": 7451405.6, "dur": 23549.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 23.5498, "detail": "UnityEngine.PhysicsModule" } },
{ "pid": 1, "tid": 1, "ts": 6820198.4, "dur": 45109.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 45.1095, "detail": "UnityEngine.TextCoreModule" } }, { "pid": 1, "tid": 1, "ts": 7474956.8, "dur": 667.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.6675, "detail": "UnityEngine.SpriteShapeModule" } },
{ "pid": 1, "tid": 1, "ts": 6865309.6, "dur": 801.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.8018, "detail": "UnityEngine.TilemapModule" } }, { "pid": 1, "tid": 1, "ts": 7475625.6, "dur": 51384.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 51.3844, "detail": "UnityEngine.TextCoreModule" } },
{ "pid": 1, "tid": 1, "ts": 6866112.8, "dur": 21410.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 21.4105, "detail": "UnityEngine.UIModule" } }, { "pid": 1, "tid": 1, "ts": 7527012, "dur": 856.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.8568, "detail": "UnityEngine.TilemapModule" } },
{ "pid": 1, "tid": 1, "ts": 6887525.6, "dur": 2988.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 2.9887, "detail": "UnityEngine.UnityWebRequestTextureModule" } }, { "pid": 1, "tid": 1, "ts": 7527883.2, "dur": 23890.9, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 23.8909, "detail": "UnityEngine.UIModule" } },
{ "pid": 1, "tid": 1, "ts": 6890515.2, "dur": 405.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.4057, "detail": "UnityEngine" } }, { "pid": 1, "tid": 1, "ts": 7551776, "dur": 3112.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 3.1125, "detail": "UnityEngine.UnityWebRequestTextureModule" } },
{ "pid": 1, "tid": 1, "ts": 6890922.4, "dur": 441591.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 441.5915, "detail": "DOTween" } }, { "pid": 1, "tid": 1, "ts": 7554889.6, "dur": 376.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 0.3764, "detail": "UnityEngine" } },
{ "pid": 1, "tid": 1, "ts": 7332516, "dur": 984251.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 984.2512, "detail": "UnityEngine.UI" } }, { "pid": 1, "tid": 1, "ts": 7555267.2, "dur": 497440.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 497.4405, "detail": "DOTween" } },
{ "pid": 1, "tid": 1, "ts": 8316769.6, "dur": 7027.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 7.0274, "detail": "DOTween43" } }, { "pid": 1, "tid": 1, "ts": 8052708.8, "dur": 1038437.8, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1038.4378, "detail": "UnityEngine.UI" } },
{ "pid": 1, "tid": 1, "ts": 8323798.4, "dur": 19040.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 19.0402, "detail": "DOTween46" } }, { "pid": 1, "tid": 1, "ts": 9091148.8, "dur": 8344.9, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 8.3449, "detail": "DOTween43" } },
{ "pid": 1, "tid": 1, "ts": 8342840, "dur": 25437.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 25.4376, "detail": "DOTweenPro" } }, { "pid": 1, "tid": 1, "ts": 9099495.2, "dur": 20545.5, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 20.5455, "detail": "DOTween46" } },
{ "pid": 1, "tid": 1, "ts": 8368278.4, "dur": 38065.3, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 38.0653, "detail": "I18N" } }, { "pid": 1, "tid": 1, "ts": 9120042.4, "dur": 28178.1, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 28.1781, "detail": "DOTweenPro" } },
{ "pid": 1, "tid": 1, "ts": 8406350.4, "dur": 91301.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 91.3012, "detail": "LitJson" } }, { "pid": 1, "tid": 1, "ts": 9148222.4, "dur": 41516.9, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 41.5169, "detail": "I18N" } },
{ "pid": 1, "tid": 1, "ts": 8497655.2, "dur": 87128.1, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 87.1281, "detail": "I18N.CJK" } }, { "pid": 1, "tid": 1, "ts": 9189744.8, "dur": 101017.7, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 101.0177, "detail": "LitJson" } },
{ "pid": 1, "tid": 1, "ts": 8584785.6, "dur": 1677731.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1677.7312, "detail": "Unity.TextMeshPro" } }, { "pid": 1, "tid": 1, "ts": 9290764, "dur": 84895.2, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 84.8952, "detail": "I18N.CJK" } },
{ "pid": 1, "tid": 1, "ts": 10262518.4, "dur": 337711.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 337.7116, "detail": "Assembly-CSharp" } }, { "pid": 1, "tid": 1, "ts": 9375660.8, "dur": 1823268.4, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 1823.2684, "detail": "Unity.TextMeshPro" } },
{ "pid": 1, "tid": 1, "ts": 10600425.6, "dur": 4135445.2, "ph": "X", "name": "WriteGenerics", "args": { "durationMS": 4135.4452, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 11198931.2, "dur": 338145.6, "ph": "X", "name": "Convert assembly non-generic methods", "args": { "durationMS": 338.1456, "detail": "Assembly-CSharp" } },
{ "pid": 1, "tid": 1, "ts": 10601520, "dur": 1114294.1, "ph": "X", "name": "GenericInstanceMethods", "args": { "durationMS": 1114.2941, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 11537248, "dur": 4537427.2, "ph": "X", "name": "WriteGenerics", "args": { "durationMS": 4537.4272, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 11715819.2, "dur": 2745835.2, "ph": "X", "name": "GenericInstanceTypes", "args": { "durationMS": 2745.8352, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 11538374.4, "dur": 1329311.1, "ph": "X", "name": "GenericInstanceMethods", "args": { "durationMS": 1329.3111, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 14461804.8, "dur": 274035.4, "ph": "X", "name": "GenericComDefinitions", "args": { "durationMS": 274.0354, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 12867694.4, "dur": 2886072.6, "ph": "X", "name": "GenericInstanceTypes", "args": { "durationMS": 2886.0726, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 14736096, "dur": 584.4, "ph": "X", "name": "Executable Processing", "args": { "durationMS": 0.5844, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 15753896, "dur": 320747.4, "ph": "X", "name": "GenericComDefinitions", "args": { "durationMS": 320.7474, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 14737689.6, "dur": 275482, "ph": "X", "name": "MetadataCollector", "args": { "durationMS": 275.482, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 16074907.2, "dur": 599.7, "ph": "X", "name": "Executable Processing", "args": { "durationMS": 0.5997, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 14739078.4, "dur": 9909.9, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 9.9099, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 16076500.8, "dur": 306172.7, "ph": "X", "name": "MetadataCollector", "args": { "durationMS": 306.1727, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 14749608, "dur": 11710.7, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 11.7107, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 16077921.6, "dur": 10320.1, "ph": "X", "name": "UpdateEmptyTokens", "args": { "durationMS": 10.3201, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 15013601.6, "dur": 1763.1, "ph": "X", "name": "Write COM Callable Wrappers", "args": { "durationMS": 1.7631, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 16089033.6, "dur": 12923.8, "ph": "X", "name": "ValidateTokens", "args": { "durationMS": 12.9238, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 15015448, "dur": 464.5, "ph": "X", "name": "Write Windows Runtime Factories", "args": { "durationMS": 0.4645, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 16383132.8, "dur": 1812, "ph": "X", "name": "Write COM Callable Wrappers", "args": { "durationMS": 1.812, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 15016198.4, "dur": 2489334, "ph": "X", "name": "Metadata", "args": { "durationMS": 2489.334, "detail": "Global" } }, { "pid": 1, "tid": 1, "ts": 16385027.2, "dur": 470.5, "ph": "X", "name": "Write Windows Runtime Factories", "args": { "durationMS": 0.4705, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 15072382.4, "dur": 840425.9, "ph": "X", "name": "Il2CppAttributes.cpp", "args": { "durationMS": 840.4259, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 16385840, "dur": 2675694, "ph": "X", "name": "Metadata", "args": { "durationMS": 2675.694, "detail": "Global" } },
{ "pid": 1, "tid": 1, "ts": 16054819.2, "dur": 14531.8, "ph": "X", "name": "UnresolvedVirtualCallStubs.cpp", "args": { "durationMS": 14.5318, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 16446112, "dur": 914115.1, "ph": "X", "name": "Il2CppAttributes.cpp", "args": { "durationMS": 914.1151, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16071166.4, "dur": 389625, "ph": "X", "name": "WriteCodeRegistration", "args": { "durationMS": 389.625, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17518048, "dur": 16915.3, "ph": "X", "name": "UnresolvedVirtualCallStubs.cpp", "args": { "durationMS": 16.9153, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16071200, "dur": 85101.1, "ph": "X", "name": "mscorlib_CodeGen.c", "args": { "durationMS": 85.1011, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17537068.8, "dur": 400917.7, "ph": "X", "name": "WriteCodeRegistration", "args": { "durationMS": 400.9177, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16143385.6, "dur": 3358.6, "ph": "X", "name": "GenericContextCollector", "args": { "durationMS": 3.3586, "detail": "Collect" } }, { "pid": 1, "tid": 1, "ts": 17537110.4, "dur": 88367.7, "ph": "X", "name": "mscorlib_CodeGen.c", "args": { "durationMS": 88.3677, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16156321.6, "dur": 730.8, "ph": "X", "name": "System.Configuration_CodeGen.c", "args": { "durationMS": 0.7308, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17613801.6, "dur": 3667.8, "ph": "X", "name": "GenericContextCollector", "args": { "durationMS": 3.6678, "detail": "Collect" } },
{ "pid": 1, "tid": 1, "ts": 16157064, "dur": 537.9, "ph": "X", "name": "Mono.Security_CodeGen.c", "args": { "durationMS": 0.5379, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17625499.2, "dur": 780.4, "ph": "X", "name": "System.Configuration_CodeGen.c", "args": { "durationMS": 0.7804, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16157902.4, "dur": 7752.3, "ph": "X", "name": "System_CodeGen.c", "args": { "durationMS": 7.7523, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17626294.4, "dur": 561.2, "ph": "X", "name": "Mono.Security_CodeGen.c", "args": { "durationMS": 0.5612, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16165668.8, "dur": 1298, "ph": "X", "name": "System.Core_CodeGen.c", "args": { "durationMS": 1.298, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17627174.4, "dur": 8740.8, "ph": "X", "name": "System_CodeGen.c", "args": { "durationMS": 8.7408, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16166976, "dur": 792.5, "ph": "X", "name": "UnityEngine.SharedInternalsModule_CodeGen.c", "args": { "durationMS": 0.7925, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17635931.2, "dur": 1288.3, "ph": "X", "name": "System.Core_CodeGen.c", "args": { "durationMS": 1.2883, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16167779.2, "dur": 16233.4, "ph": "X", "name": "UnityEngine.CoreModule_CodeGen.c", "args": { "durationMS": 16.2334, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17637228.8, "dur": 857, "ph": "X", "name": "UnityEngine.SharedInternalsModule_CodeGen.c", "args": { "durationMS": 0.857, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16184028.8, "dur": 360.3, "ph": "X", "name": "UnityEngine.GridModule_CodeGen.c", "args": { "durationMS": 0.3603, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17638094.4, "dur": 16223.6, "ph": "X", "name": "UnityEngine.CoreModule_CodeGen.c", "args": { "durationMS": 16.2236, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16184400, "dur": 347.4, "ph": "X", "name": "UnityEngine.ImageConversionModule_CodeGen.c", "args": { "durationMS": 0.3474, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17654337.6, "dur": 382.5, "ph": "X", "name": "UnityEngine.GridModule_CodeGen.c", "args": { "durationMS": 0.3825, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16184756.8, "dur": 800.2, "ph": "X", "name": "UnityEngine.InputLegacyModule_CodeGen.c", "args": { "durationMS": 0.8002, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17654734.4, "dur": 541.3, "ph": "X", "name": "UnityEngine.ImageConversionModule_CodeGen.c", "args": { "durationMS": 0.5413, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16185566.4, "dur": 909.9, "ph": "X", "name": "UnityEngine.Physics2DModule_CodeGen.c", "args": { "durationMS": 0.9099, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17655286.4, "dur": 804.3, "ph": "X", "name": "UnityEngine.InputLegacyModule_CodeGen.c", "args": { "durationMS": 0.8043, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16186489.6, "dur": 838.4, "ph": "X", "name": "UnityEngine.TextRenderingModule_CodeGen.c", "args": { "durationMS": 0.8384, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17656121.6, "dur": 1065.8, "ph": "X", "name": "UnityEngine.Physics2DModule_CodeGen.c", "args": { "durationMS": 1.0658, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16187336, "dur": 784.2, "ph": "X", "name": "UnityEngine.UnityWebRequestModule_CodeGen.c", "args": { "durationMS": 0.7842, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17657200, "dur": 854.5, "ph": "X", "name": "UnityEngine.TextRenderingModule_CodeGen.c", "args": { "durationMS": 0.8545, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16188132.8, "dur": 2150.4, "ph": "X", "name": "UnityEngine.AndroidJNIModule_CodeGen.c", "args": { "durationMS": 2.1504, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17658067.2, "dur": 789.1, "ph": "X", "name": "UnityEngine.UnityWebRequestModule_CodeGen.c", "args": { "durationMS": 0.7891, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16190296, "dur": 1024, "ph": "X", "name": "UnityEngine.AnimationModule_CodeGen.c", "args": { "durationMS": 1.024, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17658868.8, "dur": 2173.4, "ph": "X", "name": "UnityEngine.AndroidJNIModule_CodeGen.c", "args": { "durationMS": 2.1734, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16191329.6, "dur": 1616.9, "ph": "X", "name": "UnityEngine.AudioModule_CodeGen.c", "args": { "durationMS": 1.6169, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17661054.4, "dur": 958.8, "ph": "X", "name": "UnityEngine.AnimationModule_CodeGen.c", "args": { "durationMS": 0.9588, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16192956.8, "dur": 1871, "ph": "X", "name": "UnityEngine.GameCenterModule_CodeGen.c", "args": { "durationMS": 1.871, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17662028.8, "dur": 1586.2, "ph": "X", "name": "UnityEngine.AudioModule_CodeGen.c", "args": { "durationMS": 1.5862, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16194856, "dur": 1828.6, "ph": "X", "name": "UnityEngine.IMGUIModule_CodeGen.c", "args": { "durationMS": 1.8286, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17663630.4, "dur": 1831.3, "ph": "X", "name": "UnityEngine.GameCenterModule_CodeGen.c", "args": { "durationMS": 1.8313, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16197027.2, "dur": 969.4, "ph": "X", "name": "UnityEngine.PhysicsModule_CodeGen.c", "args": { "durationMS": 0.9694, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17665472, "dur": 1818, "ph": "X", "name": "UnityEngine.IMGUIModule_CodeGen.c", "args": { "durationMS": 1.818, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16198260.8, "dur": 1315.5, "ph": "X", "name": "UnityEngine.TextCoreModule_CodeGen.c", "args": { "durationMS": 1.3155, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17667640, "dur": 1207.5, "ph": "X", "name": "UnityEngine.PhysicsModule_CodeGen.c", "args": { "durationMS": 1.2075, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16199864, "dur": 1114.7, "ph": "X", "name": "UnityEngine.UIModule_CodeGen.c", "args": { "durationMS": 1.1147, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17669120, "dur": 1177.8, "ph": "X", "name": "UnityEngine.TextCoreModule_CodeGen.c", "args": { "durationMS": 1.1778, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16200990.4, "dur": 374.1, "ph": "X", "name": "UnityEngine.UnityWebRequestTextureModule_CodeGen.c", "args": { "durationMS": 0.3741, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17670582.4, "dur": 1258.6, "ph": "X", "name": "UnityEngine.UIModule_CodeGen.c", "args": { "durationMS": 1.2586, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16201392, "dur": 383.7, "ph": "X", "name": "UnityEngine_CodeGen.c", "args": { "durationMS": 0.3837, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17671852.8, "dur": 474.5, "ph": "X", "name": "UnityEngine.UnityWebRequestTextureModule_CodeGen.c", "args": { "durationMS": 0.4745, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16201785.6, "dur": 11585.1, "ph": "X", "name": "DOTween_CodeGen.c", "args": { "durationMS": 11.5851, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17672352, "dur": 537.5, "ph": "X", "name": "UnityEngine_CodeGen.c", "args": { "durationMS": 0.5375, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16213392, "dur": 15528, "ph": "X", "name": "UnityEngine.UI_CodeGen.c", "args": { "durationMS": 15.528, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17672899.2, "dur": 12851, "ph": "X", "name": "DOTween_CodeGen.c", "args": { "durationMS": 12.851, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16228942.4, "dur": 768.9, "ph": "X", "name": "DOTween43_CodeGen.c", "args": { "durationMS": 0.7689, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17685768, "dur": 14862.2, "ph": "X", "name": "UnityEngine.UI_CodeGen.c", "args": { "durationMS": 14.8622, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16229724.8, "dur": 949.9, "ph": "X", "name": "DOTween46_CodeGen.c", "args": { "durationMS": 0.9499, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17700643.2, "dur": 520.5, "ph": "X", "name": "DOTween43_CodeGen.c", "args": { "durationMS": 0.5205, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16230686.4, "dur": 614.1, "ph": "X", "name": "DOTweenPro_CodeGen.c", "args": { "durationMS": 0.6141, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17701174.4, "dur": 716.5, "ph": "X", "name": "DOTween46_CodeGen.c", "args": { "durationMS": 0.7165, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16231310.4, "dur": 963.1, "ph": "X", "name": "I18N_CodeGen.c", "args": { "durationMS": 0.9631, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17701902.4, "dur": 508.4, "ph": "X", "name": "DOTweenPro_CodeGen.c", "args": { "durationMS": 0.5084, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16232283.2, "dur": 1839.1, "ph": "X", "name": "LitJson_CodeGen.c", "args": { "durationMS": 1.8391, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17702419.2, "dur": 830.1, "ph": "X", "name": "I18N_CodeGen.c", "args": { "durationMS": 0.8301, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16234132.8, "dur": 1933.4, "ph": "X", "name": "I18N.CJK_CodeGen.c", "args": { "durationMS": 1.9334, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17703260.8, "dur": 1564.2, "ph": "X", "name": "LitJson_CodeGen.c", "args": { "durationMS": 1.5642, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16236078.4, "dur": 15592.7, "ph": "X", "name": "Unity.TextMeshPro_CodeGen.c", "args": { "durationMS": 15.5927, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17704836.8, "dur": 2205.3, "ph": "X", "name": "I18N.CJK_CodeGen.c", "args": { "durationMS": 2.2053, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16251684.8, "dur": 4069.8, "ph": "X", "name": "Assembly-CSharp_CodeGen.c", "args": { "durationMS": 4.0698, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17707051.2, "dur": 15811, "ph": "X", "name": "Unity.TextMeshPro_CodeGen.c", "args": { "durationMS": 15.811, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16256380.8, "dur": 608.4, "ph": "X", "name": "Il2CppReversePInvokeWrapperTable.cpp", "args": { "durationMS": 0.6084, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17722880, "dur": 6540.7, "ph": "X", "name": "Assembly-CSharp_CodeGen.c", "args": { "durationMS": 6.5407, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16257152, "dur": 106699.9, "ph": "X", "name": "Il2CppGenericMethodPointerTable.cpp", "args": { "durationMS": 106.6999, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17730190.4, "dur": 762.2, "ph": "X", "name": "Il2CppReversePInvokeWrapperTable.cpp", "args": { "durationMS": 0.7622, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16364011.2, "dur": 78228.1, "ph": "X", "name": "Il2CppInvokerTable.cpp", "args": { "durationMS": 78.2281, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17731092.8, "dur": 108678.3, "ph": "X", "name": "Il2CppGenericMethodPointerTable.cpp", "args": { "durationMS": 108.6783, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16442763.2, "dur": 15151, "ph": "X", "name": "Il2CppInteropDataTable.cpp", "args": { "durationMS": 15.151, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17839984, "dur": 79931.5, "ph": "X", "name": "Il2CppInvokerTable.cpp", "args": { "durationMS": 79.9315, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16459760, "dur": 1029.7, "ph": "X", "name": "Il2CppCodeRegistration.cpp", "args": { "durationMS": 1.0297, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17920641.6, "dur": 15182, "ph": "X", "name": "Il2CppInteropDataTable.cpp", "args": { "durationMS": 15.182, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16460796.8, "dur": 1044735, "ph": "X", "name": "WriteMetadata", "args": { "durationMS": 1044.735, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17937190.4, "dur": 796.8, "ph": "X", "name": "Il2CppCodeRegistration.cpp", "args": { "durationMS": 0.7968, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16465934.4, "dur": 220852.9, "ph": "X", "name": "Il2CppMetadataUsage.c", "args": { "durationMS": 220.8529, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 17937990.4, "dur": 1123542.1, "ph": "X", "name": "WriteMetadata", "args": { "durationMS": 1123.5421, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16547651.2, "dur": 4275.9, "ph": "X", "name": "Metadata", "args": { "durationMS": 4.2759, "detail": "Collect string literals" } }, { "pid": 1, "tid": 1, "ts": 17942286.4, "dur": 236211.2, "ph": "X", "name": "Il2CppMetadataUsage.c", "args": { "durationMS": 236.2112, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16699478.4, "dur": 20331.3, "ph": "X", "name": "Il2CppGenericClassTable.c", "args": { "durationMS": 20.3313, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18032265.6, "dur": 4436.4, "ph": "X", "name": "Metadata", "args": { "durationMS": 4.4364, "detail": "Collect string literals" } },
{ "pid": 1, "tid": 1, "ts": 16719824, "dur": 29023.5, "ph": "X", "name": "Il2CppGenericInstDefinitions.c", "args": { "durationMS": 29.0235, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18191700.8, "dur": 22856.9, "ph": "X", "name": "Il2CppGenericClassTable.c", "args": { "durationMS": 22.8569, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 16748870.4, "dur": 274430.6, "ph": "X", "name": "Il2CppGenericMethodTable.c", "args": { "durationMS": 274.4306, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18214580.8, "dur": 31117.8, "ph": "X", "name": "Il2CppGenericInstDefinitions.c", "args": { "durationMS": 31.1178, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17023318.4, "dur": 93024.2, "ph": "X", "name": "Il2CppTypeDefinitions.c", "args": { "durationMS": 93.0242, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18245720, "dur": 307278.6, "ph": "X", "name": "Il2CppGenericMethodTable.c", "args": { "durationMS": 307.2786, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17116369.6, "dur": 58177.5, "ph": "X", "name": "Il2CppGenericMethodDefinitions.c", "args": { "durationMS": 58.1775, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18553020.8, "dur": 97976.6, "ph": "X", "name": "Il2CppTypeDefinitions.c", "args": { "durationMS": 97.9766, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17174556.8, "dur": 143910.5, "ph": "X", "name": "CompilerCalculateTypeValues", "args": { "durationMS": 143.9105, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18651025.6, "dur": 61913.4, "ph": "X", "name": "Il2CppGenericMethodDefinitions.c", "args": { "durationMS": 61.9134, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17318496, "dur": 1778.7, "ph": "X", "name": "Il2CppMetadataRegistration.c", "args": { "durationMS": 1.7787, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18712945.6, "dur": 146381.8, "ph": "X", "name": "CompilerCalculateTypeValues", "args": { "durationMS": 146.3818, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17320596.8, "dur": 6650.7, "ph": "X", "name": "StringLiteralWriter", "args": { "durationMS": 6.6507, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18859345.6, "dur": 1668.1, "ph": "X", "name": "Il2CppMetadataRegistration.c", "args": { "durationMS": 1.6681, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17327347.2, "dur": 1141.5, "ph": "X", "name": "Metadata Strings", "args": { "durationMS": 1.1415, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18861326.4, "dur": 7576.3, "ph": "X", "name": "StringLiteralWriter", "args": { "durationMS": 7.5763, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17328512, "dur": 4360.6, "ph": "X", "name": "Events", "args": { "durationMS": 4.3606, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18869016, "dur": 896.2, "ph": "X", "name": "Metadata Strings", "args": { "durationMS": 0.8962, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17332876.8, "dur": 7752.9, "ph": "X", "name": "Properties", "args": { "durationMS": 7.7529, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18869916.8, "dur": 4435, "ph": "X", "name": "Events", "args": { "durationMS": 4.435, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17340638.4, "dur": 55831.6, "ph": "X", "name": "Methods", "args": { "durationMS": 55.8316, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18874355.2, "dur": 8574.5, "ph": "X", "name": "Properties", "args": { "durationMS": 8.5745, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17396480, "dur": 3535.1, "ph": "X", "name": "Parameter Default Values", "args": { "durationMS": 3.5351, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18882942.4, "dur": 61265.8, "ph": "X", "name": "Methods", "args": { "durationMS": 61.2658, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17400019.2, "dur": 3943.7, "ph": "X", "name": "Field Default Values", "args": { "durationMS": 3.9437, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18944216, "dur": 3840.5, "ph": "X", "name": "Parameter Default Values", "args": { "durationMS": 3.8405, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17404166.4, "dur": 532.9, "ph": "X", "name": "Field Marshaled Sizes", "args": { "durationMS": 0.5329, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18948062.4, "dur": 4691.5, "ph": "X", "name": "Field Default Values", "args": { "durationMS": 4.6915, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17404704, "dur": 14157, "ph": "X", "name": "Parameters", "args": { "durationMS": 14.157, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18953020.8, "dur": 549.4, "ph": "X", "name": "Field Marshaled Sizes", "args": { "durationMS": 0.5494, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17418868.8, "dur": 9549.9, "ph": "X", "name": "Fields", "args": { "durationMS": 9.5499, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18953572.8, "dur": 15095.6, "ph": "X", "name": "Parameters", "args": { "durationMS": 15.0956, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17428424, "dur": 3497, "ph": "X", "name": "Generic Parameters", "args": { "durationMS": 3.497, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18968676.8, "dur": 10094.5, "ph": "X", "name": "Fields", "args": { "durationMS": 10.0945, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17431926.4, "dur": 747, "ph": "X", "name": "Generic Parameter Constraints", "args": { "durationMS": 0.747, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18978779.2, "dur": 5015.7, "ph": "X", "name": "Generic Parameters", "args": { "durationMS": 5.0157, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17432676.8, "dur": 3291.5, "ph": "X", "name": "Generic Containers", "args": { "durationMS": 3.2915, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18983801.6, "dur": 771.7, "ph": "X", "name": "Generic Parameter Constraints", "args": { "durationMS": 0.7717, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17436368, "dur": 1925.4, "ph": "X", "name": "VTables", "args": { "durationMS": 1.9254, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18984577.6, "dur": 3576.6, "ph": "X", "name": "Generic Containers", "args": { "durationMS": 3.5766, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17438297.6, "dur": 1115.2, "ph": "X", "name": "Interface Offsets", "args": { "durationMS": 1.1152, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18988542.4, "dur": 2079.8, "ph": "X", "name": "VTables", "args": { "durationMS": 2.0798, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17439417.6, "dur": 43196.5, "ph": "X", "name": "Type Definitions", "args": { "durationMS": 43.1965, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18990630.4, "dur": 1279.8, "ph": "X", "name": "Interface Offsets", "args": { "durationMS": 1.2798, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17482625.6, "dur": 5119.8, "ph": "X", "name": "Images", "args": { "durationMS": 5.1198, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 18991915.2, "dur": 46970.5, "ph": "X", "name": "Type Definitions", "args": { "durationMS": 46.9705, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17487750.4, "dur": 3476.9, "ph": "X", "name": "Assemblies", "args": { "durationMS": 3.4769, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 19038899.2, "dur": 6643.7, "ph": "X", "name": "Images", "args": { "durationMS": 6.6437, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17491232, "dur": 844.1, "ph": "X", "name": "Metadata Usage Lists", "args": { "durationMS": 0.8441, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 19045547.2, "dur": 3857.9, "ph": "X", "name": "Assemblies", "args": { "durationMS": 3.8579, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17492080, "dur": 2435.8, "ph": "X", "name": "Metadata Usage Pairs", "args": { "durationMS": 2.4358, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 19049412.8, "dur": 909.7, "ph": "X", "name": "Metadata Usage Lists", "args": { "durationMS": 0.9097, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17494632, "dur": 459.7, "ph": "X", "name": "Referenced Assemblies", "args": { "durationMS": 0.4597, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 19050326.4, "dur": 2471.2, "ph": "X", "name": "Metadata Usage Pairs", "args": { "durationMS": 2.4712, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17495094.4, "dur": 968.1, "ph": "X", "name": "Attribute Types Ranges", "args": { "durationMS": 0.9681, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 19052908.8, "dur": 489.2, "ph": "X", "name": "Referenced Assemblies", "args": { "durationMS": 0.4892, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17496068.8, "dur": 413.3, "ph": "X", "name": "Attribute Types", "args": { "durationMS": 0.4133, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 19053403.2, "dur": 1052.1, "ph": "X", "name": "Attribute Types Ranges", "args": { "durationMS": 1.0521, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17496628.8, "dur": 510.2, "ph": "X", "name": "Unresolved Virtual Call Parameter Ranges", "args": { "durationMS": 0.5102, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 19054462.4, "dur": 488.1, "ph": "X", "name": "Attribute Types", "args": { "durationMS": 0.4881, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17497291.2, "dur": 3795, "ph": "X", "name": "Exported Types", "args": { "durationMS": 3.795, "detail": "" } }, { "pid": 1, "tid": 1, "ts": 19055148.8, "dur": 662.8, "ph": "X", "name": "Unresolved Virtual Call Parameter Ranges", "args": { "durationMS": 0.6628, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 17505734.4, "dur": 692.4, "ph": "X", "name": "CompletionPhase", "args": { "durationMS": 0.6924, "detail": "" } } { "pid": 1, "tid": 1, "ts": 19055976, "dur": 4059.7, "ph": "X", "name": "Exported Types", "args": { "durationMS": 4.0597, "detail": "" } },
{ "pid": 1, "tid": 1, "ts": 19061713.6, "dur": 1250, "ph": "X", "name": "CompletionPhase", "args": { "durationMS": 1.25, "detail": "" } }
], ],
"meta_datetime": "11/12/2020 15:48:28", "meta_datetime": "11/12/2020 18:27:39",
"meta_command_line": "/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/il2cpp/build/deploy/net471/il2cpp.exe --convert-to-cpp --emit-null-checks --enable-array-bounds-check --dotnetprofile=unityaot --incremental-g-c-time-slice=3 --avoid-dynamic-library-copy --profiler-report --map-file-parser=/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/Tools/MapFileParser/MapFileParser --directory=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/StagingArea/Data/Managed --generatedcppdir=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/il2cppOutput/il2cppOutput", "meta_command_line": "/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/il2cpp/build/deploy/net471/il2cpp.exe --convert-to-cpp --emit-null-checks --enable-array-bounds-check --dotnetprofile=unityaot --incremental-g-c-time-slice=3 --avoid-dynamic-library-copy --profiler-report --map-file-parser=/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/Tools/MapFileParser/MapFileParser --directory=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/StagingArea/Data/Managed --generatedcppdir=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/il2cppOutput/il2cppOutput",
"meta_command_line_args": "/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/il2cpp/build/deploy/net471/il2cpp.exe --convert-to-cpp --emit-null-checks --enable-array-bounds-check --dotnetprofile=unityaot --incremental-g-c-time-slice=3 --avoid-dynamic-library-copy --profiler-report --map-file-parser=/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/Tools/MapFileParser/MapFileParser --directory=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/StagingArea/Data/Managed --generatedcppdir=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/il2cppOutput/il2cppOutput", "meta_command_line_args": "/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/il2cpp/build/deploy/net471/il2cpp.exe --convert-to-cpp --emit-null-checks --enable-array-bounds-check --dotnetprofile=unityaot --incremental-g-c-time-slice=3 --avoid-dynamic-library-copy --profiler-report --map-file-parser=/Applications/Unity/Hub/Editor/2020.1.11f1c1/Unity.app/Contents/Tools/MapFileParser/MapFileParser --directory=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/StagingArea/Data/Managed --generatedcppdir=/Users/mazy/Mazy/Unity/LuckFarm-V3/Temp/il2cppOutput/il2cppOutput",
"meta_user_name": "mazy", "meta_user_name": "mazy",
......
No preview for this file type
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment